如果是在变量定义中,*表示nData是一个指针,在其他地方,*是解引用操作符,*nData返回nData指向的对象。
是一个指针变量,也就是指针nData 指针所指的内容.。
int a = 10;int * nData = &a;printf( "%d", *nData);