#include <iostream> #include <stdio.h> #include <string.h> #include <vector> using namespace std; int main() { int a=1,b=2; //--常量指针-- const int *cp = &a; //常量指针,本质是个指针:const修饰的是p1指向的变量,所以指向变量值不可变,指向可以改变 //*p1 = 3; //error,常量指针,指针指向变量的值不能改变 cp = &b; //常量指针,指针指向可以改变 cout << "*cp=" << *cp << endl; //--指针常量-- int* const pc = &a; //指针常量,const修饰的是int*指针,所以指向不可以改变,指向变量值可改变 *pc = 3; //指向变量值可以改变 //pc = &b; //error,指针指向不可以改变 cout << "*pc=" << *pc << endl; }
时间: 2024-11-03 21:51:51