C++中类和对象的一些注意事项 ---继承

1 继承中的访问权限问题

  • 所有继承方式, 子类都无法访问父类的private成员.

那么用如下测试代码尝试一下:

#include <iostream>
using namespace std;class father {
public:int m_father_public_value;
protected:int m_father_protected_value;
private:int m_father_private_value;
};class public_inherited_son : public father {
public:void public_inherited_son_visit_father_public_value() {cout << m_father_public_value << endl;}void public_inherited_son_visit_father_protected_value() {cout << m_father_protected_value << endl;}void public_inherited_son_visit_father_private_value() {cout << m_father_private_value << endl;}
};class protected_inherited_son: protected father {
public:void protected_inherited_son_visit_father_public_value() {cout << m_father_public_value << endl;}void protected_inherited_son_visit_father_protected_value() {cout << m_father_protected_value << endl;}void protected_inherited_son_visit_father_private_value() {cout << m_father_private_value << endl;}
};class private_inherited_son: private father {
public:void private_inherited_son_visit_father_public_value() {cout << m_father_public_value << endl;}void private_inherited_son_visit_father_protected_value() {cout << m_father_protected_value << endl;}void private_inherited_son_visit_father_private_value() {cout << m_father_private_value << endl;}
};int main() {return 0;
}

编译一下发现:

说明了子类不能访问父类的私有成员.

  • public继承, 父类的public和protected成员还是子类的public和protected成员.

试着用public继承的子类实例化的对象类外访问父类的public和protected成员, 如下测试代码:

int main() {public_inherited_son public_inherited_son_instance1;cout << public_inherited_son_instance1.m_father_public_value << endl;cout << public_inherited_son_instance1.m_father_protected_value << endl;return 0;
}

编译发现:

 

说明public继承中父类的public和protected成员在子类中还是public和protected成员, 且protected成员在类外不能访问.

  • protected继承, 父类的public和protected成员还是子类的protected成员.

试着用protected继承的子类实例化的对象类外访问父类的public和protected成员, 如下测试代码:

int main() {protected_inherited_son protected_inherited_son_instance1;cout << protected_inherited_son_instance1.m_father_public_value << endl;cout << protected_inherited_son_instance1.m_father_protected_value << endl;return 0;
}

编译发现:

父类的public和protected成员都不能在类外访问了, 说明都变成了protected成员.

  • private继承, 父类的public和protected成员成为子类的private成员.

就不测试了...

2 继承后的子类和父类的析构顺序问题

当继承后的子类实例化对象之后, 其对象所占用的内存空间中会保留一份父类的对象空间. 所以子类实例化对象的过程中, 其父类的构造函数也会被调用, 析构过程同理.

用如下代码测试一下其发生顺序:

#include <iostream>
using namespace std;class father {
public:father() {cout << "calling father's constructor" << endl;}~father() {cout << "calling father's disconstructor" << endl;}
};class public_inherited_son : public father {
public:public_inherited_son() {cout << "calling son's constructor" << endl;}~public_inherited_son() {cout << "calling son's disconstructor" << endl;}
};int main() {public_inherited_son public_inherited_son_instance1;return 0;
}

结果为:

说明了子类实例化对象的过程中会先调用父类的构造函数, 然后是子类的构造函数. 同时也表明在栈上的话析构顺序相反.

那么在堆区呢?

用如下代码测试:

#include <iostream>
using namespace std;class father {
public:father() {cout << "calling father's constructor" << endl;}~father() {cout << "calling father's disconstructor" << endl;}
};class public_inherited_son : public father {
public:public_inherited_son() {cout << "calling son's constructor" << endl;}~public_inherited_son() {cout << "calling son's disconstructor" << endl;}
};int main() {public_inherited_son *p_public_inherited_son_instance1 = new public_inherited_son;delete p_public_inherited_son_instance1;return 0;
}

运行结果:

 

总结:

子类实例化对象的过程会先调用父类的构造函数, 然后是子类的构造函数. 析构函数的顺序会反过来, 无论是栈上还是堆上.

2.1 调用父类构造函数想要传递参数方式

前面说到, 子类实例化对象时默认先调用父类构造函数, 再调用子类构造函数, 如果想要在调用父类构造函数时传递参数, 就需要显示的调用父类构造函数, 即在子类构造函数初始化列表上显示调用父类构造函数并传递参数.

2.2 C++11调用父类构造函数新方法

3 父类子类的同名成员处理方法

如果想要在子类对象访问父类同名成员, 须在成员名前加上父类名称作用域, 如下:

#include <iostream>
using namespace std;class father {
public:int member_value;
};class public_inherited_son : public father {
public:int member_value;
};int main() {public_inherited_son public_inherited_son_instance1;public_inherited_son_instance1.member_value = 10;public_inherited_son_instance1.father::member_value = 1;cout << public_inherited_son_instance1.member_value << endl;cout << public_inherited_son_instance1.father::member_value << endl;return 0;
}

结果如下:

 

需注意: 如果子类中存在同名成员函数, 子类成员函数会隐藏掉父类中所有的同名成员函数(包括所有的重载函数), 如以下测试代码:

#include <iostream>
using namespace std;class father {
public:void func1(int arg1) {cout << arg1 << endl;}void func1(int arg1, int arg2) {cout << arg1 << arg2 << endl;}
};class public_inherited_son : public father {
public:void func1(int arg1, int arg2, int arg3) {cout << arg1 << arg2 << arg3 << endl;}
};int main() {public_inherited_son public_inherited_son_instance1;public_inherited_son_instance1.func1(1);public_inherited_son_instance1.func1(1, 2);return 0;
}

编译发现:

 

如果想要使用父类函数的话, 需要加上父类作用域, 如下:

#include <iostream>
using namespace std;class father {
public:void func1(int arg1) {cout << arg1 << endl;}void func1(int arg1, int arg2) {cout << arg1 << arg2 << endl;}
};class public_inherited_son : public father {
public:void func1(int arg1, int arg2, int arg3) {cout << arg1 << arg2 << arg3 << endl;}
};int main() {public_inherited_son public_inherited_son_instance1;public_inherited_son_instance1.father::func1(1);public_inherited_son_instance1.father::func1(1, 2);return 0;
}

结果为:

 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/505452.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

C++中类和对象的一些注意事项 --- 多态

1. 一些继承中的问题 1.1 多继承中父类含有重名成员问题 如下: #include <iostream> #include <string> using namespace std;class father1 { public:father1() {class_name "father1";}string class_name; };class father2 { public:father2() {cl…

电脑按f8无法进入安全模式_自已有电脑的人,都会遇到系统死机问题,教大家实用一招自已解决...

其实我们电脑死机蓝屏重启并不可怕&#xff0c;如果只要懂得最基本的一些查找方法就可以解决这些问题&#xff0c;因为电脑是一个完整的系统&#xff0c;既然是系统工程必须由硬件与软件共同合作才能完成出色的任务&#xff0c;如果电脑出现死机蓝屏等问题可以参考以下方式进行…

台式电脑键盘字母乱了_键盘侠的育儿经利用键盘引导学龄前儿童正确使用电脑、学习英文字母和拼音...

点击上方“总想做自己”关注我可以订阅哦一点资讯邀约作者&#xff1a;方游专注探讨个人成长与正向激励的话题&#xff0c;有干货&#xff0c;不再错过&#xff0c;快来点击关注吧&#xff01;微信公众号&#xff1a;apple_seeworld难得机会与孩子在家里有长达半月的相处&#…

C++模板的注意事项

函数模板 template <typename T> //把typename换成class也可以 函数模板调用方法 使用过程中, 有两种方法调用, 如下: 自动类型推导:#include <iostream>template <class T> void swap(T &first, T &second) {T temp;temp first;first se…

excel教程自学网_Excel自学教程:万能查找函数Lookup的神应用和技巧

提起查找函数&#xff0c;大家第一时间想到的肯定是Vlookup&#xff0c;其实大多数人不知道&#xff0c;Lookup才是查找函数之王&#xff0c;它几乎能高效地实现Vlookup函数的所有功能&#xff0c;部分功能是Vlookup函数无法比拟的。一、语法结构和基本使用方法。应用场景&…

C++ STL 容器的一些总结

1 C STL类型及实现原理 1.1 顺序容器 容器中的元素为有序排列,可以指定元素插入位置. 1.1.1 vector 顺序存储, 初始化过程会分配一定量空间, 在尾部插入会很快, 但是在中间插入元素, 会把之后所有元素向后平移, 所以较慢(中间删除元素同理). 如果元素个数超过当前限制, 会重…

java电商项目简历_一文解析从写简历,到面试、谈薪酬技巧和防坑指南

点击上方“码农沉思录”&#xff0c;选择“设为星标”优质文章&#xff0c;及时送达读者大大们好&#xff0c;好几天没更新了。一方面因为这几天工作忙&#xff0c;占了写作的时间。另一方面是在准备这篇文章各种素材&#xff0c;今年是最难求职年&#xff0c;我希望通过这篇文…

qq浏览器极速版_安卓手机QQ轻聊版大升级,极速版正式上线:无广告/省内存

8月28日&#xff0c;安卓手机QQ极速版推出了4.0正式版&#xff0c;采用了全新的界面设计&#xff0c;仅保留了基本聊天功能和QQ空间、小程序、钱包、文件等少量QQ主推功能&#xff0c;现已开放下载&#xff0c;QQ极速版安装之后会覆盖QQ轻聊版。QQ极速版4.0界面焕新升级&#x…

C++ STL 容器 vector

1 vector简介 顺序存储, 初始化过程会分配一定量空间, 在尾部插入会很快, 但是在中间插入元素, 会把之后所有元素向后平移, 所以较慢(中间删除元素同理). 如果元素个数超过当前限制, 会重新分配更大空间, 再把原容器中所有元素都拷贝到新的容器中. 优点: 支持随机访问(用下标…

3dmax卸载工具_3dmax软件如何彻底卸载?

近期有很多学员遇到关于3dmax软件卸载的问题&#xff0c;有的是想安装更高版本但不知道如何卸载更安全&#xff0c;有的是自己卸载了之后再安装其他版本却总是无法成功&#xff0c;这对此类问题&#xff0c;今天我做一个详细讲解&#xff1b;根据自己所遇问题&#xff0c;找到最…

华为app安装失败与已安装签名_手机APP为什么总是安装失败

整天“机不离手”的我们每个人手机里都装有好几十个APP但安装的时候总会出现跳出手机APP无法安装或安装失败的页面这究竟是怎么回事呢&#xff1f;小翼带你瞅瞅一、手机安全认证在安装或下载应用程序时&#xff0c;如果提示失败可能是因为系统“未知来源”没有开启。可以通过打…

C++ STL 中提供的算法

1 算法 1.1 for_each() 参数有三个: 首迭代器尾迭代器执行的函数 例如如下代码: #include <algorithm> //必须包含 #include <vector> using namespace std;int main() {vector<int> tmp;tmp.push_back(10);tmp.push_back(20);tmp.push_back(30);tmp.pu…

arma模型_GARCH模型应用:以国泰君安为例

1.下载国泰君安股票数据&#xff0c;计算对数收益率(1)首先安装包"quantmod"&#xff0c;这个包可以从雅虎财经的下载股票数据&#xff0c;具体包的解释见"【量化基础】R语言获取金融数据之quantmod包"。install.packages("quantmod")#安装包qua…

C++ STL 容器 string

1 string string内部含有一个char*字符串 2 string构造方式 无参构造 string str; 字符串构造 string str("abcd"); 拷贝构造n个相同字符 string str(10, k); //初始化为10个k 3 string赋值操作 可以有以下操作: void string_test() {string str1;str1 &qu…

小程序webview不全屏_小程序不在小(深度)

原标题&#xff1a;小程序不在小(深度)你问&#xff1a;“微信小程序适合哪些行业?”&#xff0c;回答是&#xff1a;“所有行业!”你可以想一下那些做过APP的公司&#xff0c;不管是任何行业的公司都可以拥有属于自己的APP&#xff0c;而从来不会有人问他们你们用的APP是否适…

leetcode 4 --- 寻找两个有序数组的中位数

1 题目 给定两个大小为 m 和 n 的正序&#xff08;从小到大&#xff09;数组 nums1 和 nums2。请你找出并返回这两个正序数组的中位数。 进阶&#xff1a;设计一个时间复杂度为 O(log (mn)) 的算法. 2 解法 这个题如果mn是偶数, 就是找到第(mn)/2以及第(mn)/2 1个数, 如果…

leetcode 142 --- linked-list-cycle-ii

1 题目&#xff1a; 对于一个给定的链表&#xff0c;返回环的入口节点&#xff0c;如果没有环&#xff0c;返回null 拓展&#xff1a; 你能给出不利用额外空间的解法么&#xff1f; 代码&#xff1a; class Solution { public:ListNode *detectCycle(ListNode *head) {} …

百度搜索引擎优化指南3.0_深圳网站搜索引擎排名优化电话,百度优化排名费用_华阳网络...

天津华阳在线科技有限公司为您详细解读深圳网站搜索引擎排名优化电话,百度优化排名费用的相关知识与详情&#xff1a;网站的主页标题是百度SEO的关键。你想要的主要关键词应该反映在标题中。如果标题写得好&#xff0c;百度很快就收录进去了。但要记住&#xff0c;有一点&#…

C++ STL 容器的一些总结 --- set(multiset)和map(multimap)

1 set和multiset 1.1 插入元素方式 set只能用insert插入数据. insert返回值是一个pair<iterator, bool>, 即插入数据的迭代器以及是否插入成功, multiset返回的只有迭代器, 因为不会插入失败. 1.2 删除 set只能用erase, 可以传迭代器或者是值. 1.3 注意事项 不允许…

苹果自带相册打马赛克_剪映app怎么给视频局部打马赛克

剪映app怎么给视频局部打马赛克呢&#xff1f;很多用户对此还不是很清楚&#xff0c;小编这里就给大家带来有关剪映app怎么给视频局部打马赛克的回答&#xff0c;希望能够对大家有所帮助。1、首先打开剪映app&#xff0c;进入首页后点击开始创作选项&#xff0c;2、这时选择需要…