const第一个demo验证有问题
来源:6-4 const与指针
我真的是太难了哦
2020-06-10
{
char strhelloworld[] = { "helloworld" };
char const *a = "helloworld";
char* const b = strhelloworld;
char const* const c = "helloworld";
// 课程里面说这里a 的指针可以改变,但是指针指向的地址存储的值不能改变,这里下面我改变 都是可以正常打印额
a = "aaa";
cout << a << endl;
a = strhelloworld;
cout << a << endl;
//b = strhelloworld;
//c = strhelloworld;
return 0;
}
写回答
1回答
-
quickzhao
2020-06-10
你仔细看看你改变的是什么,a指向的内容你变了吗,b和c你变变试试。
052020-06-10
相似问题