C++中的结构体继承结构体

2023年8月5日,周六上午


在C++中,结构体可以继承另一个结构体,就像类继承另一个类一样。这种继承被称为结构体继承。

#include

struct people{
	std::string name;
	int age;
};

struct student : public people{
	std::string id;
};

int main(){
	student XiaoMing;
	XiaoMing.age=20;
	XiaoMing.id="202301001";
	XiaoMing.name="小明";
}

你可能感兴趣的:(我的博客,c++,开发语言)