由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 来个简单c++题,找错
相关主题
题2C# 的不定长度的ARRAY?
问一个简单C++问题引用的几个基本问题,有点糊涂
C 里面的 makecontext(&a, (void*)&function1, 0);菜鸟读C++ STL源程序的疑问
c++ 问题 (转载)全局对象
java main的疑问which func will be called?
how to convert GMT to timestamp of the computer's current timeeffective C++里的memory pool 一问:
perl sprintf question converting dec to hex【讨论】问一道很简单的C++题。。。。 (转载)
c++ typedef 一问关于void指针
相关话题的讨论汇总
话题: foo话题: void话题: converted话题: int话题: class
进入Programming版参与讨论
1 (共1页)
P********e
发帖数: 2610
1
class A
{
int a;
void print(){}
};
class B : public A
{};
void foo ( A** a )
{}
int main()
{
B* a = new B();
foo(&a);
}
a***x
发帖数: 26368
2
不会

【在 P********e 的大作中提到】
: class A
: {
: int a;
: void print(){}
: };
: class B : public A
: {};
: void foo ( A** a )
: {}
: int main()

r*******y
发帖数: 1081
3
B* converted to A* is ok, but B** converted to A** is not ok

【在 P********e 的大作中提到】
: class A
: {
: int a;
: void print(){}
: };
: class B : public A
: {};
: void foo ( A** a )
: {}
: int main()

f******y
发帖数: 2971
4
In main(), you did not have "return 0;" :)

【在 P********e 的大作中提到】
: class A
: {
: int a;
: void print(){}
: };
: class B : public A
: {};
: void foo ( A** a )
: {}
: int main()

P********e
发帖数: 2610
5
standard says, compiler should generate the return for me.
safe~

【在 f******y 的大作中提到】
: In main(), you did not have "return 0;" :)
a***y
发帖数: 2803
6
有的地方要;,有的地方不需要;

【在 P********e 的大作中提到】
: class A
: {
: int a;
: void print(){}
: };
: class B : public A
: {};
: void foo ( A** a )
: {}
: int main()

c***r
发帖数: 1570
7
new B[0]
P**l
发帖数: 3722
8
改成
A* a = new B();
就行了吧

【在 P********e 的大作中提到】
: class A
: {
: int a;
: void print(){}
: };
: class B : public A
: {};
: void foo ( A** a )
: {}
: int main()

1 (共1页)
进入Programming版参与讨论
相关主题
关于void指针java main的疑问
这个是什么原因how to convert GMT to timestamp of the computer's current time
为什么我看不懂下面的code,是不是水平还不够?perl sprintf question converting dec to hex
有关 template function 的一个问题c++ typedef 一问
题2C# 的不定长度的ARRAY?
问一个简单C++问题引用的几个基本问题,有点糊涂
C 里面的 makecontext(&a, (void*)&function1, 0);菜鸟读C++ STL源程序的疑问
c++ 问题 (转载)全局对象
相关话题的讨论汇总
话题: foo话题: void话题: converted话题: int话题: class