由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 来,出个题
相关主题
一个指向指针的指针的引用?我这个C++程序有没有什么问题啊?请指点。。。谢谢。。。
a simple question for C++ class请教个static_cast vs reinterpret_cast的问题。
关于C++中一个Class的大小 (转载)g++ default optimization error
问个简单的memory allocation 的问题。reverse words, not the Microsoft one!!!
用数组做参数,在函数内部如何知道数组的size?c++ 得最基本问题
一个古怪的C程序运行错误。question about shift
a question about bitwise operation问个char*的问题
请大侠评点一下我这个C++多重继承的程序。。。写得对不对啊。A aimple C++ question
相关话题的讨论汇总
话题: sizeof话题: endl话题: cout话题: char话题: 出个
进入Programming版参与讨论
1 (共1页)
d*******d
发帖数: 2050
1
非常非常简单。
先自己写下结果,然后运行试试。
void f(char a[]){
cout << sizeof(a) << endl;
cout << sizeof(*a) << endl;
}
main(){
char a[10];
cout << sizeof(a) << endl;
cout << sizeof(*a) << endl;
f(a);
}
c*****g
发帖数: 119
2
what's the point?

【在 d*******d 的大作中提到】
: 非常非常简单。
: 先自己写下结果,然后运行试试。
: void f(char a[]){
: cout << sizeof(a) << endl;
: cout << sizeof(*a) << endl;
: }
: main(){
: char a[10];
: cout << sizeof(a) << endl;
: cout << sizeof(*a) << endl;

d*******d
发帖数: 2050
3
前面不是有人问“a simple question”么?
我觉得这个例子可以很好啊,把几种情况都试验了。

【在 c*****g 的大作中提到】
: what's the point?
e*****w
发帖数: 144
4
作为函数参数时,数组退化为指针。

【在 d*******d 的大作中提到】
: 前面不是有人问“a simple question”么?
: 我觉得这个例子可以很好啊,把几种情况都试验了。

1 (共1页)
进入Programming版参与讨论
相关主题
A aimple C++ question用数组做参数,在函数内部如何知道数组的size?
这个地址咋回事?一个古怪的C程序运行错误。
请教一个简单字符串程序 (转载)a question about bitwise operation
为什么foo1可以而foo2不行?请大侠评点一下我这个C++多重继承的程序。。。写得对不对啊。
一个指向指针的指针的引用?我这个C++程序有没有什么问题啊?请指点。。。谢谢。。。
a simple question for C++ class请教个static_cast vs reinterpret_cast的问题。
关于C++中一个Class的大小 (转载)g++ default optimization error
问个简单的memory allocation 的问题。reverse words, not the Microsoft one!!!
相关话题的讨论汇总
话题: sizeof话题: endl话题: cout话题: char话题: 出个