C++中定义类型别名 ` 第一种方法:使用关键字typedef typedef long long ll; 第二种方法: using 类型别名=类型名 (C++11中新增) using ll=long long; `