摘要: int n=1,m=2; const int* a=&n; cout<<*a<<endl; a=&m; cout<<*a<<endl; int* const b=&n; cout<<*b<<endl; *b=10; cout<<*b<<endl; const int* a中,const修饰变量,表示 阅读全文
posted @ 2022-01-25 10:37 Wangtn 阅读(253) 评论(0) 推荐(0) 编辑