Should I return bool or const bool?

后端 未结 11 873
我在风中等你
我在风中等你 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:02

    As bool is going to be copied, it's the same, to put const or not. Plus you'll may have some compil problems.

提交回复
热议问题