#include <iostream>

using namespace std;
class A{
	
public:
	int x1;
	int y1;
	A(int x,int y) 
	{x1 = x;
		y1 = y;
	}
	int getx() 
	{
		return x1+y1;
	}
};
class B :public A
{public:
	B(int x, int y ,int z):A (x,y) 
	{
		cout << x1<<endl;
	}
};
int main() 
{
	B b1(1, 2, 3);
	cout<<b1.getx();
	system("pause");
}

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐