先看以下一段代码:
#include#include #include using namespace std;int main() { int time[] = {1,2,3}; int *q ; q = time; cout<<*q<<" "< <
以下是执行结果:
1 0x7fff6de21a20
linux 0x7fff6de21a00 hello world h hello world 0x7fff6de219f0 linux解释:一直以来都对指针有点疑惑.所以没事的时候就专门写了这段代码,代码不难.却对我认识指针和数据有很大的帮助.
样例中的time,str和s的全部的输出,依据书中的描写,就非常easy推断出来输出的数据.唯一让我困惑的就是char*和char[].
在c和c++中假设直接赋值char* p="hello world",是相当于char arr[]="hello world"; p = arr的,"hello world"是在内在的文字常量区,所以直接输出p的结果是hello world