mirror of
https://github.com/CnTransGroup/EffectiveModernCppChinese.git
synced 2024-12-28 05:40:43 +08:00
Fix error in item 7
This commit is contained in:
parent
c383ff2343
commit
38cf752c9e
@ -126,14 +126,14 @@ Widget w1(10, true); // 使用小括号初始化
|
||||
//调用第一个构造函数
|
||||
|
||||
Widget w2{10, true}; // 使用花括号初始化
|
||||
// 调用第二个构造函数
|
||||
// 调用第三个构造函数
|
||||
// (10 和 true 转化为long double)
|
||||
|
||||
Widget w3(10, 5.0); // 使用小括号初始化
|
||||
// 调用第二个构造函数
|
||||
|
||||
Widget w4{10, 5.0}; // 使用花括号初始化
|
||||
// 调用第二个构造函数
|
||||
// 调用第三个构造函数
|
||||
// (10 和 5.0 转化为long double)
|
||||
````
|
||||
甚至普通的构造函数和移动构造函数都会被std::initializer_list构造函数劫持:
|
||||
|
Loading…
Reference in New Issue
Block a user