auto 关键字用于让编译器从 RHS 或其声明中推断出其后变量的类型。
auto
auto a = 3; // int auto b = 4.5; // double auto p = &a; // pointer