博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
每天学一点
阅读量:5763 次
发布时间:2019-06-18

本文共 464 字,大约阅读时间需要 1 分钟。

C++ 11的功能不错,应该写点程序试试,否则以后的C++代码都不懂了。。。更别提写

http://developer.51cto.com/art/201312/422379.htm

 

几个特性:

auto:auto str = "Hello World";

decltype:

  1. int x = 3;  
  2. decltype(x) y = x; 

nullptr: int a = nullptr; // 编译失败,nullptr不能转型为int

序列化: for (auto p : m)

lamda表达式:  for_each(iv.begin(), iv.end(), [b](int &x){cout<<(x + b)<<endl;});

变长参数:auto t2 = make_tuple(1, 2.0, "C++ 11", {1, 0, 2}); 

better 初始化方法: vector<int> iv{1, 2, 3};  

转载于:https://www.cnblogs.com/painmoth/p/4843604.html

你可能感兴趣的文章
【SDN】Openflow协议中对LLDP算法的理解--如何判断非OF区域的存在
查看>>
纯DIV+CSS简单实现Tab选项卡左右切换效果
查看>>
Composer管理PHP依赖关系
查看>>
redis 常用命令
查看>>
LVS+Keepalived高可用负载均衡集群架构
查看>>
EdbMails Convert EDB to PST
查看>>
struts2用了哪几种模式
查看>>
android 资源种类及使用
查看>>
Explorer程序出错
查看>>
Centos7同时运行多个Tomcat
查看>>
使用CocoaPods过程中的几个问题
查看>>
我的友情链接
查看>>
为eclipse安装maven插件
查看>>
公司新年第一次全员大会小记
查看>>
JAVA8 Stream 浅析
查看>>
inner join on, left join on, right join on要详细点的介绍
查看>>
SAS vs SSD对比测试MySQL tpch性能
查看>>
Spring boot 整合CXF webservice 全部被拦截的问题
查看>>
Pinpoint跨节点统计失败
查看>>
【Canal源码分析】Canal Server的启动和停止过程
查看>>