C++11新特性绑定器包装器
# 定义别名
> `using` 和`typedef`一样,并不会创建新的类型,他们只是给某些类型定义了`新的别名`,using相教于typedef的优势在于定义函数`更加直观`,并且可以给模版`定义别名` 而`typedef `无法`定义模版`
```cpp
typedef 旧的类型名 新的类型名;
typedef unsigned int uint_t;
//使用using 定义
using 新的类型 = 旧的类型;
using uint_t = int;
//定义函数指针对比
typedef int(*func)(int,double);
using func = int(*)(int
more...








