Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
char const*const variablename = " ";
这是什么意思?
和指针声明一样吗?
请任何人解释。
先感谢您!
它是一个const指向constC 字符串的指针。这意味着既不能更改字符串的内容,也不能更改指针本身。
const
const保护他的左侧,除非他的左侧没有任何东西, 然后才保护他的右侧。
将此应用于您的示例,它是const指向const String.
String