在 C++11 中 "converting constructor"s 改变了什么?
What changed with "converting constructor"s at C++11?
今天我很惊讶 this paragraph at cppreference:
Converting constructor
A constructor that is not declared with the specifier explicit and which can be called with a single parameter (until C++11) is called a converting constructor.
“(直到 C++11)”位似乎指的是短语“可以用单个参数调用”。
我不知道这在 C++11 中发生了变化。有什么变化?什么样的“转换构造函数”可以接受多个参数? (如果它指的是这个。)
(我想它可能指的是具有多个参数但那些额外参数(或所有参数)具有默认值的构造函数。但是参数的默认值永远存在于 C++ 中。所以那里做了一些改变- 在 C++11 之前,您不能使用采用默认参数的构造函数进行隐式转换?但是 this example at wandbolt 表明 did 在 C++03 中有效。)
您引用的页面后面给出了一个带有两个参数的示例:
A a4 = {4, 5}; // OK: copy-list-initialization selects A::A(int, int)
今天我很惊讶 this paragraph at cppreference:
Converting constructor
A constructor that is not declared with the specifier explicit and which can be called with a single parameter (until C++11) is called a converting constructor.
“(直到 C++11)”位似乎指的是短语“可以用单个参数调用”。
我不知道这在 C++11 中发生了变化。有什么变化?什么样的“转换构造函数”可以接受多个参数? (如果它指的是这个。)
(我想它可能指的是具有多个参数但那些额外参数(或所有参数)具有默认值的构造函数。但是参数的默认值永远存在于 C++ 中。所以那里做了一些改变- 在 C++11 之前,您不能使用采用默认参数的构造函数进行隐式转换?但是 this example at wandbolt 表明 did 在 C++03 中有效。)
您引用的页面后面给出了一个带有两个参数的示例:
A a4 = {4, 5}; // OK: copy-list-initialization selects A::A(int, int)