update dir

This commit is contained in:
light-city
2019-08-07 14:36:00 +08:00
parent f1e2b3fbef
commit d49f1a8484
16 changed files with 317 additions and 0 deletions

36
using/using_derived.cpp Normal file
View File

@@ -0,0 +1,36 @@
/**
* @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;
}