摘要: 1.const引用: 但是加上const之后是可以的,const int &a=100;就不会报错了。 2.函数占位参数: 如果给最后的占位参数加上默认值: 3.内联函数 内联只是对编译器发起一个申请,编译器可以拒绝用户的请求。内联函数只用在普通函数的开头加上inline关键字。 当编译器发现某段代 阅读全文
posted @ 2018-09-11 15:26 Crystal_Guang 阅读(513) 评论(1) 推荐(1) 编辑
摘要: 来源:牛客网 下列哪两个是等同的 int b; 1.const int *a = &b; 2.const * int a = &b; 3.const int* const a = &b; 4.int const* const a = &b; 3,4是相同的。 int const *a 和 const 阅读全文
posted @ 2018-09-11 14:55 Crystal_Guang 阅读(563) 评论(0) 推荐(0) 编辑