摘要: // test.cpp : 定义控制台应用程序的入口点。// #include "stdafx.h"#includeusing namespace std;const int i = 100;const int j = i * 3; int main(){ const int *x; x = &i;//x是一个指针,它指向一个const int,即x可以指向任何标识符(即它不是... 阅读全文
posted @ 2016-05-20 16:21 01Turing 阅读(118) 评论(0) 推荐(0) 编辑