首页 > 代码库 > C++子类中显式调用基类函数
C++子类中显式调用基类函数
1 #include <iostream> 2 using namespace std; 3 4 class thebase { 5 public: 6 virtual void basePrint() { 7 cout << "the base class basePrint() function." << endl; 8 } 9 10 void basePrint2() {11 cout << "the base class basePrint2() function." << endl;12 }13 14 };15 16 class thesub : public thebase{17 public:18 void basePrint() {19 cout << "i will call the parent function." << endl;20 thebase::basePrint(); // 显式调用基类成员. 21 }22 23 };24 25 int main(int argc, char* argv[])26 {27 28 thesub mysub;29 mysub.basePrint();30 31 return 0;32 }
C++子类中显式调用基类函数
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。