Should I return bool or const bool?

后端 未结 11 870
我在风中等你
我在风中等你 2021-01-01 10:36

Which is better:

bool MyClass::someQuery() const;

const bool MyClass::someQuery() const;

I\'ve been using \'const bool\' since I\'m sure I

11条回答
  •  长发绾君心
    2021-01-01 11:14

    const return type

    SUMMARY:

    The value of a return type that is declared const cannot be changed. This is especially usefull when giving a reference to a class’s internals, but can also prevent rarer errors.

提交回复
热议问题