/*** @file using_derived.cpp* @brief 函数重装* @author 光城* @version v1* @date 2019年08月07日*/#include <iostream>using namespace std;class Base{public:void f(){ cout<<"f()"<<endl;}void f(int n){cout<<"Base::f(int)"<<endl;}};class Derived : private Base {public:using Base::f;void f(int n){cout<<"Derived::f(int)"<<endl;}};int main(){Base b;Derived d;d.f();d.f(1);return 0;}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。