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

View File

@ -24,6 +24,7 @@
- [x] [c实现c++多态那些事](./c_poly)
- [x] [explicit那些事](./explicit)
- [x] [friend那些事](./friend)
- [x] [using那些事](./using)
代码运行:
全部在linux下用vim编写使用gcc/g++调试!全部可正常运行!

View File

@ -1,4 +1,11 @@
# C实现C++的面向对象特性
## 关于作者:
个人公众号:
![](../img/wechat.jpg)
## 1.C++实现案例
C++中的多态:在C++中会维护一张虚函数表,根据赋值兼容规则,我们知道父类的指针或者引用是可以指向子类对象的。

View File

@ -1,5 +1,11 @@
# explicit(显式)关键字那些事
## 关于作者:
个人公众号:
![](../img/wechat.jpg)
- explicit 修饰构造函数时,可以防止隐式转换和复制初始化
- explicit 修饰转换函数时,可以防止隐式转换,但按语境转换除外

View File

@ -1,4 +1,11 @@
# 友元函数与友元类
## 关于作者:
个人公众号:
![](../img/wechat.jpg)
## 0.概述
友元提供了一种 普通函数或者类成员函数 访问另一个类中的私有或保护成员 的机制。也就是说有两种形式的友元:
@ -11,6 +18,13 @@
缺点:破坏了类的封装性和数据的透明性。
总结:
- 能访问私有成员
- 破坏封装性
- 友元关系不可传递
- 友元关系的单向性
- 友元声明的形式及数量不受限制
## 1.友元函数
在类声明的任何区域中声明,而定义则在类的外部。

View File

@ -1,5 +1,11 @@
# UNION那些事
## 关于作者:
个人公众号:
![](../img/wechat.jpg)
联合union是一种节省空间的特殊的类一个 union 可以有多个数据成员,但是在任意时刻只有一个数据成员可以有值。当某个成员被赋值后其他成员变为未定义状态。联合有如下特点:
- 默认访问控制符为 public

120
using/README.md Normal file
View File

@ -0,0 +1,120 @@
# using那些事
## 关于作者:
个人公众号:
![](../img/wechat.jpg)
## 基本使用
局部与全局using具体操作与使用见下面案例
```c++
#include <iostream>
#define isNs1 1
//#define isGlobal 2
using namespace std;
void func()
{
cout<<"::func"<<endl;
}
namespace ns1 {
void func()
{
cout<<"ns1::func"<<endl;
}
}
namespace ns2 {
#ifdef isNs1
using ns1::func; /// ns1中的函数
#elif isGlobal
using ::func; /// 全局中的函数
#else
void func()
{
cout<<"other::func"<<endl;
}
#endif
}
int main()
{
/**
* 这就是为什么在c++中使用了cmath而不是math.h头文件
*/
ns2::func(); // 会根据当前环境定义宏的不同来调用不同命名空间下的func()函数
return 0;
}
```
完整代码见:[using_global.cpp](using_global.cpp)
## 改变访问性
```
class Base{
public:
std::size_t size() const { return n; }
protected:
std::size_t n;
};
class Derived : private Base {
public:
using Base::size;
protected:
using Base::n;
};
```
类Derived私有继承了Base对于它来说成员变量n和成员函数size都是私有的如果使用了using语句可以改变他们的可访问性如上述例子中size可以按public的权限访问n可以按protected的权限访问。
完整代码见:[derived_base.cpp](derived_base.cpp)
## 函数重载
在继承过程中派生类可以覆盖重载函数的0个或多个实例一旦定义了一个重载版本那么其他的重载版本都会变为不可见。
如果对于基类的重载函数,我们需要在派生类中修改一个,又要让其他的保持可见,必须要重载所有版本,这样十分的繁琐。
```c++
#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;
}
```
如上代码中在派生类中使用using声明语句指定一个名字而不指定形参列表所以一条基类成员函数的using声明语句就可以把该函数的所有重载实例添加到派生类的作用域中。此时派生类只需要定义其特有的函数就行了而无需为继承而来的其他函数重新定义。
完整代码见:[using_derived.cpp](using_derived.cpp)
## 取代typedef
C中常用typedef A B这样的语法将B定义为A类型也就是给A类型一个别名B
对应typedef A B使用using B=A可以进行同样的操作。
```c++
typedef vector<int> V1;
using V2 = vector<int>;
```
完整代码见:[using_typedef.cpp](using_typedef.cpp)

BIN
using/derived_base Executable file

Binary file not shown.

48
using/derived_base.cpp Normal file
View File

@ -0,0 +1,48 @@
#include <iostream>
using namespace std;
class Base1 {
public:
Base1():value(10) {}
virtual ~Base1() {}
void test1() { cout << "Base test1..." << endl; }
protected: // 保护
int value;
};
// 默认为私有继承
class Derived1 : Base1 {
public:
void test2() { cout << "value is " << value << endl; }
};
class Base {
public:
Base():value(20) {}
virtual ~Base() {}
void test1() { cout << "Base test1..." << endl; }
protected: //私有
int value;
};
/**
* 访
* 访public和protected成员访private成员
*
*/
class Derived : Base {
public:
using Base::value;
void test2() { cout << "value is " << value << endl; }
};
int main()
{
Derived1 d1;
d1.test2();
Derived d;
d.test2();
return 0;
}

BIN
using/using_derived Executable file

Binary file not shown.

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;
}

BIN
using/using_global Executable file

Binary file not shown.

45
using/using_global.cpp Normal file
View File

@ -0,0 +1,45 @@
/**
* @file using_global.cpp
* @brief using各种使用
* @author
* @version v1
* @date 2019-08-07
*/
#include <iostream>
#define isNs1 1
//#define isGlobal 2
using namespace std;
void func()
{
cout<<"::func"<<endl;
}
namespace ns1 {
void func()
{
cout<<"ns1::func"<<endl;
}
}
namespace ns2 {
#ifdef isNs1
using ns1::func; /// ns1中的函数
#elif isGlobal
using ::func; /// 全局中的函数
#else
void func()
{
cout<<"other::func"<<endl;
}
#endif
}
int main()
{
/**
* c++使cmath而不是math.h头文件
*/
ns2::func(); // 会根据当前环境定义宏的不同来调用不同命名空间下的func()函数
return 0;
}

BIN
using/using_typedef Executable file

Binary file not shown.

34
using/using_typedef.cpp Normal file
View File

@ -0,0 +1,34 @@
/**
* @file using_typedef.cpp
* @brief g++ -o using_typedef using_typedef.cpp -std=c++11
* typedef使using来定义别名
* @author
* @version v1
* @date 2019-08-07
*/
#include <iostream>
#include <vector>
using namespace std;
typedef vector<int> V1;
using V2 = vector<int>;
int main()
{
int nums1[] = {1,2,3,4,5,6};
V1 vec1(nums1,nums1+sizeof(nums1)/sizeof(int));
int nums2[] = {5,7,6};
V2 vec2(nums2,nums2+sizeof(nums2)/sizeof(int));
for(auto i:vec1)
cout<<i<<" ";
cout<<endl;
for(auto i:vec2)
cout<<i<<" ";
cout<<endl;
return 0;
}