高手请来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(); 展开
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(); 展开
1个回答
展开全部
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();
}
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();
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询