const 的位置決定修飾的對像,如char const *p表示修飾的是*p,所以不能用*p='a',而p這個address是可以修改的,比如p=&q。 如果是char* const p,則 ...
確定! 回上一頁