摘要: 1、写在前面: int main(void) { const int a = 0; int* ptr = const_cast<int*>(&a); *ptr = 10; int b = a; int c = b; cout << a << endl; cout << b << endl; cout 阅读全文
posted @ 2021-09-14 13:54 乐天的LEEE 阅读(323) 评论(0) 推荐(0) 编辑