高手请来C++改错题 真的非常感谢

5.找出下面程序中的错误,并改正classA{inta,b;public:A(intaa=0,intbb){a=aa;b=bb;}};6.找出下面程序中的错误,并改正#i... 5.找出下面程序中的错误,并改正
class A {
int a,b;
public:
A(int aa=0, int bb){
a=aa; b=bb;
}
};
6.找出下面程序中的错误,并改正
# include <iostream.h>
class Test{
private:
static int x;
public:
virtual static int func ();
};
int Test::x=20;
int Test::func()
{
return x;
}
void main()
{
cout<<Test::func()<<endl;
Test a;
cout<<a.func();
展开
 我来答
wangtk1982
2006-06-19 · TA获得超过3742个赞
知道大有可为答主
回答量:3206
采纳率:100%
帮助的人:1420万
展开全部
5.class A {
int a,b;
public:
A(int aa=0, int bb=0){ 或者 A(int bb,int aa=0 ){
a=aa; b=bb;
}
};

6。
#include <iostream.h>
class Test
{
private:
static int x;
public:
static int func (); //静态成员函数不能做成虚函数
};
int Test::x=20;
int Test::func()
{
return x;
}
void main()
{
cout<<Test::func()<<endl;
Test a;
cout<<a.func();
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式