文章目录
- using
- 1.定义别名
using
1.定义别名
1.1 定义类型别名
using t = int;
1.2 定义函数指针
int test(double,string){}
//返回值类型 int ,参数类型:double string
using func = int(*) (double,string);
int main()
{func f = test;f(10.5,“hello”);
}
1.3 定义模板别名
template<typename T>
using MMap = Map<int T>;
int main()
{MMap<double> map1;map1.insert(make_pair(1,1.2));
}