服务器之家

服务器之家 > 正文

一篇文章带你了解C++面向对象编程--继承

时间:2021-12-24 14:40     来源/作者:Wonderfulness

C++ 面向对象编程 ―― 继承

"Shape" 基类

class Shape {
public:
	Shape() {		// 构造函数
		cout << "Shape -> Constructor" << endl;
	}
	~Shape() {		// 析构函数
		cout << "Shape -> Destructor" << endl;
	}
	void Perimeter() {		// 求 Shape 周长
		cout << "Shape -> Perimeter" << endl;
	}
	void Area() {		// 求 Shape 面积
		cout << "Shape -> Area" << endl;
	}
};

"Circle" 派生类

"Circle" 类继承于 “Shape” 类

class Circle : public Shape {
public:
	Circle(int radius) :_r(radius) {
		cout << "Circle -> Constructor" << endl;
	}
	~Circle() {
		cout << "Circle -> Destructor" << endl;
	}
	void Perimeter() {
		cout << "Circle -> Perimeter : "
			<< 2 * 3.14 * _r << endl;		// 圆周率取 3.14
	}
	void Area() {
		cout << "Circle -> Perimeter : "
			<< 3.14 * _r * _r << endl;		// 圆周率取 3.14
	}
private:
	int _r;
};

"Rectangular" 派生类

"Rectangular" 类继承于 “Shape” 类

class Rectangular : public Shape {
public:
	Rectangular(int length, int width) :_len(length), _wid(width) {
		cout << "Rectangular -> Contructor" << endl;
	}
	~Rectangular() {
		cout << "Rectangular -> Destructor" << endl;
	}
	void Perimeter() {
		cout << "Rectangular -> Perimeter : "
			<< 2 * (_len + _wid) << endl;
	}
	void Area() {
		cout << "Rectangular -> Area : "
			<< _len * _wid << endl;
	}
private:
	int _len;
	int _wid;
};

"main()" 函数

int main()
{
	/*  创建 Circle 类对象 cir  */
	Circle cir(3);
	cir.Perimeter();
	cir.Area();
	cout << endl;
	/*  创建 Rectangle 类对象 rec  */
	Rectangular rec(2, 3);
	rec.Perimeter();
	rec.Area();
	cout << endl;
	return 0;
}

运行结果

一篇文章带你了解C++面向对象编程--继承

1.创建派生类对象 :

基类的 Constructor 先执行,然后执行子类的 Constructor

2.析构派生类对象 :

派生类的 Destructor 先执行,然后执行基类的 Destructor

 

总结

本篇文章就到这里了,希望能够给你带来帮助,也希望您能够多多关注服务器之家的更多内容!

原文链接:https://blog.csdn.net/weixin_44880330/article/details/119987666

标签:

相关文章

热门资讯

yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整
蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整 2021-08-24
2021年耽改剧名单 2021要播出的59部耽改剧列表
2021年耽改剧名单 2021要播出的59部耽改剧列表 2021-03-05
返回顶部