由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 求教char**&与char*的不同
相关主题
C++ Q12: Reference Types谁给解释一下这个c question
Why C++11 introduce "decltype" and "auto"?char s[]和char *ps的不同
珍惜生命,远离 R 和 GoC++ questions
What is wrong with the constructor calling?difference between: char** p and char*p[] ??
a c++ question.问一个C++函数Parameter的问题
c++ 问题 (转载)what's wrong with this C++ code?
问几个问题C++ Strategies and Tactics 书上一个问题求助
make 时候遇到 undefined reference 怎么办?two interesting questions
相关话题的讨论汇总
话题: char话题: type话题: 不同
进入Programming版参与讨论
1 (共1页)
C********e
发帖数: 219
1
为什么char**&最后两个符号不会抵消?
谢谢
g*********e
发帖数: 14401
2
c里面&既可以用来做求地址的运算,也可以用来表示reference类型,是两种东西。
S*A
发帖数: 7142
3
reference type 是 C++ 里的吧,C 没有 reference type。
& 在 C 里面只能在 expression 里面用。
char **& 不是一个valid C type。
char * 是一个 C type。
1 (共1页)
进入Programming版参与讨论
相关主题
two interesting questionsa c++ question.
c++ 得最基本问题c++ 问题 (转载)
蔡鸟C++ 类型问题问几个问题
问个字符串的基本问题make 时候遇到 undefined reference 怎么办?
C++ Q12: Reference Types谁给解释一下这个c question
Why C++11 introduce "decltype" and "auto"?char s[]和char *ps的不同
珍惜生命,远离 R 和 GoC++ questions
What is wrong with the constructor calling?difference between: char** p and char*p[] ??
相关话题的讨论汇总
话题: char话题: type话题: 不同