background picture of the home page

zxyの神秘小屋

欢迎家访~

本人严格遵守国家法律法规,坚持绿色上网

auto -> decltype(c++11)

1.auto 关键字 auto 不能保留const 属性 auto 会优先推断为值类型而非引用类型 auto 利用函数返回值来确定类型的时候,函数会执行 示例: //auto 不能保留const 属性 const int a{}; auto c = a; //const属性丢失 //auto 会

thumbnail of the cover of the post

c++重载与函数模板

函数重载 函数重载允许我们创建名称相同的函数,但是为了编译器能够正确的编译这个程序,这些函数采用不同的参数列表来区分,比如: int ave(int a,int b){ return (a+b)/2; } int ave(int a,int b,int c){ return (a+

thumbnail of the cover of the post