- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章C++11/14的新特性(更简洁)由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
新的字符串表示方式——原生字符串(Raw String Literals) 。
C/C++中提供了字符串,字符串的转义序列,给输出带来了很多不变,如果需要原生义的时候,需要反转义,比较麻烦.
C++提供了,原生字符串,即字符串中无转义,亦无需再反义。详细规则见带码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include <iostream>
using
namespace
std;
string path =
"C:\Program Files (x86)\alipay\aliedit\5.1.0.3754"
;
string path2 =
"C:\\Program Files (x86)\\alipay\\aliedit\\5.1.0.3754"
;
//更简洁的表示
string path3 = R
"(C:\Program Files (x86)\alipay\aliedit\5.1.0.3754)"
;
string path4 = R
"(C:\Program "
Files
" (x86)\\alipay\aliedit\5.1.0.3754)"
;
int
main(
int
argc,
char
*argv[])
{
cout<<path<<endl;
cout<<path2<<endl;
cout<<path3<<endl;
cout<<path4<<endl;
return
0;
}
|
新的for循环——for(x:range) 。
C++为 for 提供 for range 的用法.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
#include <iostream>
#include <vector>
#include <map>
using
namespace
std;
int
main(
int
argc,
char
*argv[])
{
string str =
"china"
;
//!字符数组
for
(auto ch: str)
{
cout<<ch<<endl;
}
int
arr[] = {1,2,3,4};
//!普通数组
for
(auto i: arr)
{
cout<<i<<endl;
}
vector<string> vs = {
"abc"
,
"xyz"
,
"mnq"
};
vector<string>::iterator itr = vs.begin();
for
(; itr != vs.end(); itr++)
{
cout<<*itr<<endl;
}
//!vector
for
(auto &s : vs)
{
cout<<s<<endl;
}
map<
int
,string> mis={{1,
"c++"
},{2,
"java"
},{3,
"python"
}};
map<
int
,string>::iterator itr = mis.begin();
for
(; itr != mis.end(); ++itr)
{
cout<<(*itr).first<<
"\t"
<<itr->second<<endl;
}
//!map
for
(auto &pair: mis)
{
cout<<pair.first<<
"\t"
<<pair.second<<endl;
}
return
0;
}
|
新的初始化的方式——Initializer List 。
1)常规方法——normal init 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
#include <iostream>
#include <vector>
#include <list>
#include <map>
using
namespace
std;
int
main(
int
argc,
char
*argv[])
{
#if 0
vector<
int
> vi(5);
cout<<vi.size()<<vi.capacity()<<endl;
vector<
int
> vi2(5,10);
for
(auto i: vi2){
cout<<i<<endl;
}
vector<
int
> vi3;
for
(
int
i=0; i<10; i++){
vi3.push_back(i);
}
for
(auto i: vi3){
cout<<i<<endl;
}
list<
int
> li(5);
cout<<li.size()<<endl;
for
(auto &i:li){
cout<<i<<endl;
}
list<
int
> li2(5,10);
cout<<li2.size()<<endl;
for
(auto &i:li2){
cout<<i<<endl;
}
list<
int
> li3;
for
(
int
i=0; i<10; i++)
{
li3.push_back(i);
}
cout<<li3.size()<<endl;
for
(auto &i:li3){
cout<<i<<endl;
}
#endif
map<
int
,string> mis;
mis.insert(pair<
int
,string>(1,
"c++"
));
mis.insert(pair<
int
,string>(2,
"java"
));
mis.insert(pair<
int
,string>(3,
"python"
));
mis.insert(map<
int
,string>::value_type(4,
"c"
));
mis.insert(map<
int
,string>::value_type(5,
"php"
));
for
(auto is: mis)
{
cout<<is.first<<
"\t"
<<is.second<<endl;
}
mis[6] =
"scala"
;
mis[7] =
"basic"
;
mis[8] =
"ruby"
;
for
(auto &is: mis)
{
cout<<is.first<<
"\t"
<<is.second<<endl;
}
return
0;
}
|
2)初始化列表——Initializer List 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#include <iostream>
#include <vector>
#include <list>
#include <map>
using
namespace
std;
int
main(
int
argc,
char
*argv[])
{
vector<
int
> iv = {1,2,3,4,5};
list<
int
> li = {1,2,3,4,5};
map<
int
,string> mis = {{1,
"c"
},{2,
"c++"
},
{3,
"java"
},{4,
"scala"
},
{5,
"python"
}};
mis.insert({6,
"ruby"
});
// map<int,string>::iterator itr = mis.begin();
// for(; itr != mis.end(); ++itr)
// {
// cout<<itr->first<< itr->second<<endl;
// }
for
(auto &is: mis)
{
cout<<is.first<<is.second<<endl;
}
return
0;
}
|
3)initializer_list<T>(作入参) 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#include <iostream>
#include <vector>
using
namespace
std;
template
<
typename
T>
class
MyArray
{
private
:
vector<T> m_Array;
public
:
MyArray() { }
MyArray(
const
initializer_list<T>& il)
{
for
(auto x : il)
m_Array.push_back(x);
}
};
int
main()
{
MyArray<
int
> foo = { 3, 4, 6, 9 };
return
0;
}
|
统一的初始化风格(Uniform initialization) 。
C++中的初始化风格,大体有如下形式:
1
2
3
|
int
a = 2;
//"赋值风格"的初始化
int
aa [] = { 2, 3 };
//用初始化列表进行的赋值风格的初始化
complex z(1, 2);
//"函数风格"的初始化
|
C++ 11 中,允许通过以花括号的形式来调用构造函数。这样多种对象构造方式便可以统一起来了:
1
2
3
|
int
a = { 2 };
int
aa [] = { 2, 3 };
complex z = { 1, 2 };
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#include <iostream>
using
namespace
std;
class
complex
{
public
:
complex(
int
x,
int
y)
:_x(x),_y(y){}
private
:
int
_x;
int
_y;
};
complex func(
const
complex & com)
{
return
{1,2};
}
int
main(
int
argc,
char
*argv[])
{
int
a = 10;
int
aa[] = {1,2,3};
complex com(1,2);
//---------------------------
int
a_ = {1};
int
aa_[] = {1,2,3};
complex com_ = {1,2};
func({1,2});
return
0;
}
|
auto自动类型推导 。
1)引入 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include <iostream>
using
namespace
std;
int
func()
{
return
8;
}
int
main(
int
argc,
char
*argv[])
{
auto i = 5;
auto &ri = i;
auto rf = func();
const
auto *p = &ri;
static
auto si = 100;
return
0;
}
|
2)语法 。
auto 能够实现类型的自我推导,并不代表一个实际的类型声明。auto 只是一个类型声明的占位符。 auto 声明的变量,必须马上初始化,以让编译器推断出它的实际类型,并在编译时将 auto 占位符替换为真正的类型.
3)用法 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#include <iostream>
#include <vector>
using
namespace
std;
//void foo(auto i)
//{
// cout<<i<<endl;
//}
int
main(
int
argc,
char
*argv[])
{
int
arr[10] = {0};
auto aa = arr;
//!auto == const int *
cout<<
sizeof
(aa)<<
sizeof
(aa)<<endl;
// auto aaa[10] = arr; //!错误的用法:C/C++中数组不可以直接赋值的属性是不可违背的。
vector<
int
> vi;
auto ivcp = vi;
// vector<auto> va = vi;
return
0;
}
|
如迭代器的初始化,容器拷贝等.
decltype-类型指示器 。
1)获取表达式类型 。
auto 类型,作为占位符的存在来修饰变量,必须初始化,编译器通过初始化来确定 auto 所代表的类型。即必须定义变量.
如果,我仅希望得到类型,而不是具体的变量产生关系,该如何作到呢?decltype(expr); expr 代表被推导的表达式。由decltype推导所声明难过的变量,可初始化,也可不初始化。 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#include <iostream>
using
namespace
std;
int
func()
{
return
1;
}
int
main(
int
argc,
char
*argv[])
{
int
a = 10;
cout<<
sizeof
(a)<<endl;
decltype(a) b = 20;
//!decltype(a) == int
decltype(a+b) c = 30;
cout<<a<<b<<c<<endl;
const
int
& cira = a;
decltype(cira) cirb = b;
cout<<cira<<cirb<<endl;
int
*pa = &a;
decltype(pa) pb = &b;
cout<<&a<<
"\t"
<<pa<<endl;
cout<<&b<<
"\t"
<<pb<<endl;
decltype(func()) df;
cout<<
sizeof
(df)<<endl;
return
0;
}
|
2)推导规则 。
decltype(expr); 所推导出来的类型,完全与 expr 类型一致。同 auto 一样,在编译期间完成,并不会真正计算表达式的值。 应用 。
3)decltype与typedef联合应用 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#include <iostream>
#include <vector>
#include <map>
using
namespace
std;
int
main(
int
argc,
char
*argv[])
{
vector<
int
> vi = {1,2,3,4,5,0};
typedef
decltype(vi.begin()) Itr;
for
(Itr itr = vi.begin(); itr != vi.end(); ++itr)
{
cout<<*itr<<endl;
}
map<
int
,string> mis;
mis.insert(map<
int
,string>::value_type(1,
"abc"
));
mis.insert(decltype(mis)::value_type(2,
"java"
));
typedef
decltype(map<
int
,string>::value_type()) Int2String;
mis.insert(Int2String(3,
"c++"
));
for
(auto& is:mis)
{
cout<<is.first<<is.second<<endl;
}
return
0;
}
|
4)decltype +auto 。
C++11 增了返回类型后置(trailing-return-type,或跟踪返回类型),将 decltype 和 auto结合起来完成返回类型的推导。 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#include <iostream>
using
namespace
std;
template
<
typename
R,
typename
T,
typename
U>
R add(T a, U b)
{
return
a+b;
}
template
<
typename
R,
typename
T,
typename
U>
auto add2(T a, U b)->decltype(a+b)
{
return
a+b;
}
int
main(
int
argc,
char
*argv[])
{
int
a = 1;
float
b = 1.1;
auto ret = add<decltype(a+b),
int
,
float
>(a,b);
cout<<ret<<endl;
auto ret2 = add2<decltype(a+b)>(a,b);
cout<<ret2<<endl;
return
0;
}
|
仿函数(functor) 。
1)语法 。
重载了 operator()的类的对象,在使用中,语法类型于函数。故称其为仿函数。此种用法优于常见的函数回调。 。
1
2
3
4
5
6
7
8
|
class
Add
{
public
:
int
operator()(
int
x,
int
y)
{
return
x+y;
}
};
|
2)应用 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include <iostream>
using
namespace
std;
class
Add
{
public
:
int
operator()(
int
x,
int
y)
{
return
x+y;
}
};
int
main(
int
argc,
char
*argv[])
{
int
a = 1 , b = 2;
Add add;
cout<<add(a,b)<<endl;
return
0;
}
|
3)提高(带状态的functor) 。
相对于函数,仿函数,可以拥用初始状态,一般通过 class 定义私有成员,并在声明对象的时候,进行初始化。私有成员的状态,就成了仿函数的初始状态。而由于声明一个仿函数对象可以拥有多个不同初始状态的实例。 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#include <iostream>
using
namespace
std;
class
Tax
{
public
:
Tax(
float
r,
float
b):_rate(r),_base(b){}
float
operator()(
float
money)
{
return
(money-_base)*_rate;
}
private
:
float
_rate;
float
_base;
};
int
main(
int
argc,
char
*argv[])
{
Tax high(0.40,30000);
Tax middle(0.25,20000);
Tax low(0.12,10000);
cout<<
"大于 3w 的税:"
<<high(37500)<<endl;
cout<<
"大于 2w 的税:"
<<middle(27500)<<endl;
return
0;
}
|
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我.
原文链接:https://www.cnblogs.com/wangkeqin/p/9285682.html 。
最后此篇关于C++11/14的新特性(更简洁)的文章就讲到这里了,如果你想了解更多关于C++11/14的新特性(更简洁)的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
我想知道有没有可能做 new PrintWriter(new BufferedWriter(new PrintWriter(s.getOutputStream, true))) 在 Java 中,s
我正在尝试使用 ConcurrentHashMap 初始化 ConcurrentHashMap private final ConcurrentHashMap > myMulitiConcurrent
我只是想知道两个不同的新对象初始化器之间是否有任何区别,还是仅仅是语法糖。 因此: Dim _StreamReader as New Streamreader(mystream) 与以下内容不同: D
在 C++ 中,以下两种动态对象创建之间的确切区别是什么: A* pA = new A; A* pA = new A(); 我做了一些测试,但似乎在这两种情况下,都调用了默认构造函数,并且只调用了它。
我已经阅读了其他帖子,但它们没有解决我的问题。环境为VB 2008(2.0 Framework)下面的代码在 xslt.Load 行导致 XSLT 编译错误下面是错误的输出。我将 XSLT 作为字符串
我想知道为什么alert(new Boolean(false))打印 false 而不是打印对象,因为 new Boolean 应该返回对象。如果我使用 console.log(new Boolean
本文实例讲述了Python装饰器用法。分享给大家供大家参考,具体如下: 写装饰器 装饰器只不过是一种函数,接收被装饰的可调用对象作为它的唯一参数,然后返回一个可调用对象(就像前面的简单例子) 注
我可以编写 YAML header 来使用 knit 为 R Markdown 文件生成多种输出格式吗?我无法重现 the original question with this title 的答案中
我可以编写一个YAML标头以使用knitr为R Markdown文件生成多种输出格式吗?我无法重现the original question with this title答案中描述的功能。 这个降价
我正在使用vars package可视化脉冲响应。示例: library(vars) Canada % names ir % `$`(irf) %>% `[[`(variables[e])) %>%
我有一个容器类,它有一个通用参数,该参数被限制到某个基类。提供给泛型的类型是基类约束的子类。子类使用方法隐藏(新)来更改基类方法的行为(不,我不能将其设为虚拟,因为它不是我的代码)。我的问题是"new
Java 在提示! cannot find symbol symbol : constructor Bar() location: class Bar JPanel panel =
在我的应用程序中,一个新的 Activity 从触摸按钮(而不是点击)开始,而且我没有抬起手指并希望在新的 Activity 中跟踪触摸的 Action 。第二个 Activity 中的触摸监听器不响
已关闭。此问题旨在寻求有关书籍、工具、软件库等的建议。不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,
和我的last question ,我的程序无法检测到一个短语并将其与第一行以外的任何行匹配。但是,我已经解决并回答了。但现在我需要一个新的 def函数,它删除某个(给定 refName )联系人及其
这个问题在这里已经有了答案: Horizontal list items (7 个答案) 关闭 9 年前。
我想创建一个新的 float 类型,大小为 128 位,指数为 4 字节(32 位),小数为 12 字节(96 位),我该怎么做输入 C++,我将能够在其中进行输入、输出、+、-、*、/操作。 [我正
我在放置引用计数指针的实例时遇到问题 类到我的数组类中。使用调试器,似乎永远不会调用构造函数(这会扰乱引用计数并导致行中出现段错误)! 我的 push_back 函数是: void push_back
我在我们的代码库中发现了经典的新建/删除不匹配错误,如下所示: char *foo = new char[10]; // do something delete foo; // instead of
A *a = new A(); 这是创建一个指针还是一个对象? 我是一个 c++ 初学者,所以我想了解这个区别。 最佳答案 两者:您创建了一个新的 A 实例(一个对象),并创建了一个指向它的名为 a
我是一名优秀的程序员,十分优秀!