Tag: 列表初始化

为什么列表初始化(使用花括号)比替代scheme更好?

MyClass a1 {a}; // clearer and less error-prone than the other three MyClass a2 = {a}; MyClass a3 = a; MyClass a4(a); 为什么? 我找不到答案,所以让我回答我自己的问题。