在C程式語言中,*p表示指標中儲存的值,p表示值的位址,稱為指標。
const char*和char const*表示指標可以指向一個常數字符,指標指向的字符的值不能被改變。但是我們可以改變指標的值,因為它不是常數,可以指向另一個常數字元。
char* const表示指標可以指向一個字符,指針指向的字符的值可以被改變。但是我們不能改變指標的值,因為它現在是常數,不能指向另一個字元。
const char* const表示指標可以指向一個常數字符,指標指向的字符的值不能被改變。我們也不能改變指標的值,因為它現在是常數,不能指向另一個常數字元。
命名語法的原則是從右到左。
// constant pointer to constant char const char * const // constant pointer to char char * const // pointer to constant char const char *
取消註解錯誤的程式碼並檢視錯誤。
即時示範
#include <stdio.h> int main() { //Example: char const* //Note: char const* is same as const char* const char p = 'A'; // q is a pointer to const char char const* q = &p; //Invalid asssignment // value of p cannot be changed // error: assignment of read-only location '*q' //*q = 'B'; const char r = 'C'; //q can point to another const char q = &r; printf("%c</p><p>", *q); //Example: char* const char u = 'D'; char * const t = &u; //You can change the value *t = 'E'; printf("%c", *t); // Invalid asssignment // t cannot be changed // error: assignment of read-only variable 't' //t = &r; //Example: char const* const char const* const s = &p; // Invalid asssignment // value of s cannot be changed // error: assignment of read-only location '*s' // *s = 'D'; // Invalid asssignment // s cannot be changed // error: assignment of read-only variable 's' // s = &r; return 0; }
C E
以上是C中const char*p、char*const p和const char*const p之間的差異的詳細內容。更多資訊請關注PHP中文網其他相關文章!