摘要: http://blog.csdn.net/anye3000/article/details/6578262#include <iostream>using namespace std; void main(){ int a = 10; int **pTest = new int*; int *pSec = &a; pTest = &pSec; *pTest = pSec; cout<<*pTest<<endl; cout<<pSec<<endl; cout<<**pTest<<endl; //修 阅读全文
posted @ 2012-08-23 23:43 CBDoctor 阅读(456) 评论(0) 推荐(0)