1、分析如下代码
#include <iostream> using namespace std; int main() { int *p1 = NULL, *p2 = NULL; int buf1[2] = {10, 5}; int buf2[2] = {10, 5}; p1 = &buf1[0]; p2 = &buf2[0]; cout << (*p1)++<<endl; cout << *p1 << endl; cout << *p2++ << endl; cout << *p2 << endl; return 0; }
运算结果如下:
10
11
10
5
这说明了
(*p1)++ 是先取了变量,然后对变量值进行了++运算。结果是指针变量的值未发生变化。
*p2++ 是先取指针指向的变量值,然后对指针进行++运算。结果是指针变量的值更新为新变量的地址。在下一次运算时生效。