1.auto会移除const属性 2.auto优先推断为值类型而不是引用类型 const int a{}; auto b{a};//b为int类型 int& lb { b }; auto c=b;//c为int类型