auto -> decltype(c++11) c++ 1.auto 关键字 auto 不能保留const 属性 auto 会优先推断为值类型而非引用类型 auto 利用函数返回值来确定类型的时候,函数会执行 示例: //auto 不能保留const 属性 const int a{}; auto c = a; //const属性丢失 //auto 会
c++重载与函数模板 c++ 函数重载 函数重载允许我们创建名称相同的函数,但是为了编译器能够正确的编译这个程序,这些函数采用不同的参数列表来区分,比如: int ave(int a,int b){ return (a+b)/2; } int ave(int a,int b,int c){ return (a+