编译器可以从初始化数据推断出变量的类型。因此,定义 auto iVar = 11; 与定义 int iVar = 11; 相同(因为 11 是一个 int 字面量)。
auto iVar = 11;
int iVar = 11;
11
int
有关从初始化数据推断类型的更多信息(包括交互式示例)