本篇内容介绍了“C++怎么使用{}初始化器语法”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!
成都创新互联公司成立与2013年,先为安图等服务建站,安图等地企业,进行企业商务咨询服务。为安图企业网站制作PC+手机+微官网三网同步一站式服务解决您的所有建站问题。
ES.23:优先使用{}初始化器语法
优先使用{}。{}初始化器原则简单,更通用,更少歧义,并且比其他形式的初始化更安全。
只在你确定不会发生窄化时使用=。对于内置算数类型,只在给auto赋值时使用=。避免()初始化,它允许模糊解析.
Example(示例)
int x {f(99)};
int y = x;
vector v = {1, 2, 3, 4, 5, 6};
For containers, there is a tradition for using {...} for a list of elements and (...) for sizes:
对于容器来讲,习惯上使用{...}表示要素列表,使用()表示大小。
vector v1(10); // vector of 10 elements with the default value 0
vector v2{10}; // vector of 1 element with the value 10
vector v3(1, 2); // vector of 1 element with the value 2
vector v4{1, 2}; // vector of 2 element with the values 1 and 2
{}初始化器不允许窄化转换(这通常是好事)并且允许显式构造函数(这没有问题,我们就是要初始化一个新变量)
int x {7.9}; // error: narrowing
int y = 7.9; // OK: y becomes 7. Hope for a compiler warning
int z = gsl::narrow_cast(7.9); // OK: you asked for it
{}初始化器差不多可以被用于任何初始化;其他形式的初始化则不行。
auto p = new vector {1, 2, 3, 4, 5}; // initialized vector
D::D(int a, int b) :m{a, b} { // member initializer (e.g., m might be a pair)
// ...
};
X var {}; // initialize var to be empty
struct S {
int m {7}; // default initializer for a member
// ...
};
由于这个原因,{}初始化经常被称为“统一初始化”(虽然很不幸还存在很少的例外。)
用一个单值初始化一个用auto声明的变量,例如:{v},在C++17之前会产生以外的结果,C++17原则某种程度上好一些:
auto x1 {7}; // x1 is an int with the value 7
auto x2 = {7}; // x2 is an initializer_list with an element 7
auto x11 {7, 8}; // error: two initializers
auto x22 = {7, 8}; // x22 is an initializer_list with elements 7 and 8
如果你确实想要一个列表初始化,使用={...};
auto fib10 = {1, 1, 2, 3, 5, 8, 13, 21, 34, 55}; // fib10 is a list
={} 提供拷贝初始化,但是{}提供直接初始化。就像拷贝初始化和直接初始化之间的区别一样,这会使人惊讶。{}接受显式构造函数,={}不会。例如:
struct Z { explicit Z() {} };
Z z1{}; // OK: direct initialization, so we use explicit constructor
Z z2 = {}; // error: copy initialization, so we cannot use the explicit constructor
使用直接的{}初始化,除非你就是想禁止显式构造函数。
template
void f()
{
T x1(1); // T initialized with 1
T x0(); // bad: function declaration (often a mistake)
T y1 {1}; // T initialized with 1
T y0 {}; // default initialized T
// ...
}
Enforcement(实施建议)
Flag uses of = to initialize arithmetic types where narrowing occurs.
提示使用=进行算数类型的初始化而且发生窄化转换的情况。
Flag uses of () initialization syntax that are actually declarations. (Many compilers should warn on this already.)
提示使用()初始化语法但实际上是声明的情况(很多编译器应该已经对这种情况报警)
“C++怎么使用{}初始化器语法”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注创新互联网站,小编将为大家输出更多高质量的实用文章!