摘要: 1 #include 2 3 int main(void) 4 { 5 const int a = 10; 6 int* p = (int*)&a; 7 *p = 20; 8 std::cout << a << "|" << &a << std::endl; 9... 阅读全文
posted @ 2016-01-17 22:08 Astone 阅读(192) 评论(0) 推荐(0) 编辑