变量名 对内存空间上的一段数据的抽象 int* 声明指针 *p p地址上的值 &p 获取指针地址 指针存储的是内存地址 int i = 90; int *p = &i; //p地址上的值为i的内存地址 *p = 200;//间接赋值