【发布时间】:2011-02-23 10:26:30
【问题描述】:
可能重复: What is the difference between const int*, const int * const, and int const *?
以下有什么区别?
char const *p;
const char *p;
char *const p;
有没有一个可以让我重新学习 C 和 C++ 的好网站?看来我忘记了,工作面试让我很难过......
【问题讨论】:
-
在线资源比不上good books。
-
在 Posix 上,您可以使用一个名为
cdecl的程序。cdecl explain 'const char *p'将回答declare p as pointer to const char