gpt4 book ai didi

c++ - 在 C++ 中使用隐式转换进行复制初始化

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:18:31 26 4
gpt4 key购买 nike

class Foo {
public:
Foo(float b) {}
};

class Bar {
public:
Bar(Foo foo) {}
};

int main(int argc, char *argv[]) {
Bar b1(3.0f); // accept, one implicit convertion happens there.
Bar b2 = 3.0f; // error: no viable conversion from 'float' to 'Bar'
return 0;
}

为什么第二个表达式编译失败?我预计它会调用与第一个表达式相同的转换构造函数。

最佳答案

来自 [dcl.init]:

Otherwise (i.e., for the remaining copy-initialization cases), user-defined conversion sequences that can convert from the source type to the destination type or (when a conversion function is used) to a derived class thereof are enumerated as described in 13.3.1.4, and the best one is chosen through overload resolution (13.3).

我们可以调用从源类型直接到目标类型的用户定义转换。也就是说,如果我们有 Bar(float ),我们会考虑该构造函数。然而,在这种情况下,我们的候选者只是 Bar(Foo ),它不采用 float

您可以进行零次或一次用户定义的转换。在直接初始化的情况下,我们只需调用 Bar(Foo ) 即可调用一个用户定义的转换 (float --> Foo)。在复制初始化的情况下,我们正在寻找从 float(源类型)一直到 Bar(目标类型)的转换序列,这将涉及 < em>两个 用户定义的转换(float --> FooFoo --> Bar),因此出现错误。

关于c++ - 在 C++ 中使用隐式转换进行复制初始化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32053359/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com