C++初学者在学类的知识时遇到的问题
# include<iostream># include<stdlib.h>
using namespace std;
class test
{
public:
int a,b,c;
};
class testa:public test
{
public:
int d;
testa(int a,int b,int c,int e):test(a,b,c)
{
d=e;
}
};
void main()
{
testa a(1,2,3,4);
printf("%d",a.b);
system("pause");
}
我用VS2010编译后在testa(int a,int b,int c,int e):test(a,b,c)这一行显视 没有重载函数接受 3 个参数
谁能够通俗的解释一下,一定要通俗,我可刚学~