Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道我们什么时候使用
int func() const;
那么我们不能修改函数中的任何东西,除了可变变量。但是当我使用
const int func();
它允许我修改任何东西吗?
是返回const int和
const int
是const函数,即不修改被调用对象状态的函数。
const