码迷,mamicode.com
首页 > 编程语言 > 详细

C++11中常用的几个简写

时间:2014-06-18 13:26:56      阅读:759      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   color   c++   

C++11添加了很多新特性,可以使程序代码变得简洁,这些特性实用而且效率高。

不便之处是:要增加学习成本,还有你要升级你的编译器了。

目前支持C++11特性的编译器有:

  • g++ 4.8
  • clang 3.3
  • intel 13.0
  • vs2012 nov ctp

目前刚接触,看看下面几个常用C++11的代码:

(1)比如:

vector<vector<MyType>>::const_iterator it = v.begin() 

可以简写为:

auto it = v.cbegin() 


(2)遍历数组,遍历字符串,遍历STL容器,遍历STL  map

比如不知道数组容器的大小,即可方便的遍历数组:

int arr[] = {1, 2, 3, 4};  
for(auto i : arr) {  
    std::cout<< i << std::endl;  
} 

 

 

C++11中常用的几个简写,布布扣,bubuko.com

C++11中常用的几个简写

标签:style   class   blog   code   color   c++   

原文地址:http://www.cnblogs.com/Xylophone/p/3791904.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!