类CBase的定义如下:
class CBase
{
int x;
public:
CBase(int n){x=n;}
};
class CDerive:public CBase
{
CBase y;
int z
public:
CDerive(int a,int b,int c);
};
在构造函数CDerive的下列定义中,正确的是( )
发布于 2020-12-25 22:53:35
登录后免费查看答案
关注者
0
被浏览
47