次の C++03 プログラムを検討してください。
#include <iostream>
struct T
{
mutable int x;
T() : x(0) {}
};
void bar(int& x)
{
x = 42;
}
void foo(const T& t)
{
bar(const_cast<int&>(t.x));
}
int main()
{
T t;
foo(t);
std::cout << t.x << '\n';
}
動作しているように見えますが、安全ですか?
フィールドを変更しているだけですmutable
が、そのコンテキストを完全に取り除いてconst
しまうと緊張します。