摘要: 1 #include 2 using namespace std; 3 4 5 int main() 6 { 7 const int i=42; 8 auto j=i; 9 const auto &k=i;10 auto *p=&i;11 co... 阅读全文
posted @ 2015-04-13 19:10 无敌烤皮蛋 阅读(98) 评论(0) 推荐(0)
摘要: 1 #include 2 using namespace std; 3 4 5 int main() 6 { 7 int i=0,&r=i; 8 auto a=r; 9 10 const int ci=i,&cr=ci;... 阅读全文
posted @ 2015-04-13 19:09 无敌烤皮蛋 阅读(96) 评论(0) 推荐(0)