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 の値を新しい const int にコピーするにはどうすればよいですか??
これから:
int start= 343;
これに:
const int end = start;
どのようにこれを行うことができますか、例はありますか? 私は本当に方法を知りません、私を助けてください-
このような:
int start = 343; const int end = start;
endconst であることを確認したい場合は、次のように変更してみてください。
end
end++; // Compile error!
C ++を使用している場合は、実行時に定数メンバー変数を設定できます。
class M { public: M(int number) : mNumber(number) { } const int mNumber; };