关于C const的问题

发布于 2024-10-21 16:55:44 字数 451 浏览 2 评论 0原文

可能的重复:
关于“int const *p”和“const int *p”

之间的区别

const  char *p

char * const p?

在于,第一个意味着不能更改字符。后面一种意思是不能改变指针。我说得对吗? 谢谢你!

Possible Duplicate:
about “int const *p” and “const int *p ”

Difference between

const  char *p

and

char * const p?

is that fist one means cannot change char. Later one means cannot change the pointer. Am I right?
Thank you!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

撩动你心 2024-10-28 16:55:44
const char *p

表示字符不能更改。 *p = '\0' 是非法的。 Var p 是一个指向 const char 的指针。

char * const p

表示指针不能改变。 p = 0 是非法的。常量p是指向char的指针。

const char * const p

意味着两者都无法改变。常量p是指向const char的指针。

更新:添加了第三个声明。

const char *p

means the characters cannot be changed. *p = '\0' is illegal. Var p is a pointer to a const char.

char * const p

means the pointer cannot be changed. p = 0 is illegal. Constant p is a pointer to a char.

const char * const p

means neither can be changed. Constant p is a pointer to a const char.

Update: Added third declaration.

疯了 2024-10-28 16:55:44

在第一个中,您无法编辑被指点,在第二个中,您无法编辑指针。
也许看看这个

In the first you can't edit the pointee and in the second you can't edit the pointer.
Have a look at this perhaps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文