Should I return bool or const bool?

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

    const bool func();
    bool f = func();
    

    0 errors, 0 warnings. What have you accomplished other than unnecessary code inflation?

提交回复
热议问题