您好,登錄后才能下訂單哦!
本篇內容介紹了“C++怎么使用{}初始化器語法”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
ES.23:優先使用{}初始化器語法
優先使用{}。{}初始化器原則簡單,更通用,更少歧義,并且比其他形式的初始化更安全。
只在你確定不會發生窄化時使用=。對于內置算數類型,只在給auto賦值時使用=。避免()初始化,它允許模糊解析.
Example(示例)
int x {f(99)};
int y = x;
vector<int> v = {1, 2, 3, 4, 5, 6};
For containers, there is a tradition for using {...} for a list of elements and (...) for sizes:
對于容器來講,習慣上使用{...}表示要素列表,使用()表示大小。
vector<int> v1(10); // vector of 10 elements with the default value 0
vector<int> v2{10}; // vector of 1 element with the value 10
vector<int> v3(1, 2); // vector of 1 element with the value 2
vector<int> 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<int>(7.9); // OK: you asked for it
{}初始化器差不多可以被用于任何初始化;其他形式的初始化則不行。
auto p = new vector<int> {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<int> with an element 7
auto x11 {7, 8}; // error: two initializers
auto x22 = {7, 8}; // x22 is an initializer_list<int> 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<typename T>
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++怎么使用{}初始化器語法”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。