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