int yyy = const_cast<int&> (xxx); 为什么得到another int
const int xxx = 50;
int yyy = const_cast<int&> (xxx);// another int //得到another int (为什么?)
yyy = 200;
cout << "xxx:"<<xxx<<" address: "<<&xxx<<endl; //result: xxx: 50 address: 002CF88C
cout << "yyy:"<<yyy<<" address: "<<&yyy<<endl; //result: yyy: 200 address: 002CF888
[解决办法]
不管你怎么转换
int yyy = const_cast<int&> (xxx);
这左边都是int而不是int &
所以是不可能引用的,只会弄个新副本
[解决办法]