c語言指向常量的指針和常量指針

指向常量的指針:該指針指向的值不能改變,指針不是常量,所以可以修改指針的指向?
int main(void){ ???int value = 10; ???/*定義一個(gè)指向常量的指針*/ ???const int *pValue = &value; ???//pValue = &value; ???/** ????* ?????*?編譯器會(huì)報(bào)錯(cuò),*pValue是只讀的。 ????*?也就是指針指向的值不能改變 ????*/ ?????????/** ????????*?這個(gè)賦值編譯器會(huì)報(bào)錯(cuò)?assignment of read-only location '*pValue' ????????*?因?yàn)?pValue指向的值是常量,所以不能改變。 ????????*/ ???*pValue = 20; ???/*但可以對value的值進(jìn)行改變*/ ???int number = 30; ???/** ????*?指針不是常量,所以可以修改指針的指向 ????*/ ???pValue = &number; ???return 0;}常量指針?
#include <stdio.h>?
/**?
常量指針指針中存儲(chǔ)的地址不能改變?
int main(void)?
{?
int value = 10;?
int const pValue = &value;?
int item = 34;?
/**?
編譯器報(bào)錯(cuò),assignment of read-only variable 'pValue'。說明不能修改指針中存儲(chǔ)的地址?
pValue = &item;?
/但是可以修改地址所指向的值/?
pValue = 24;?
return 0;?
}
了解更多網(wǎng)絡(luò)知識關(guān)注:http://www.vecloud.com/