码迷,mamicode.com
首页 > 2014年09月23日 > 全部分享
关于auto和decltype
1 auto会忽略顶层const,保留底层const 2 3 int i = 0; 4 5 const int* const p = &i; 6 7 auto p2 = p; //p2是const int*,不是const int* const 8 //...
分类:其他好文   时间:2014-09-23 02:25:13    阅读次数:325
1888条   上一页 1 ... 109 110 111 112
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!