gpt4 book ai didi

c++ - 为什么 'explicit' 关键字允许隐式转换?

转载 作者:太空狗 更新时间:2023-10-29 19:52:16 26 4
gpt4 key购买 nike

class Test {

private:
int value;

public:
void display(void)
{
cout << "Value [" << value << "]" << endl;
}
explicit Test(int i)
{
value=i;
}
};

int main() {

Test a(5);
Test b(4.9);

a.display();
b.display();

cin.get();
return 0;
}

即使提到显式,浮点值也会转换为整数。

我原以为(错误地)float 不会转换为整数并且不会构造对象 b。

最佳答案

explicit 是指构造函数本身,而不是构造函数的参数。您的显式构造函数不能用作 类型 Test 的隐式转换。

void function( Test param );

function( 5 ); // Your "explicit" makes this call an error.
// The parameter must be explicitly cast, such as Test(5)

在 C++11 或更高版本中,您可以在模板参数上使用 = delete 语法来防止隐式参数转换。

  Test(int i)
{
value=i;
}

template<typename T>
Test(const T&) = delete;
// ^ Aside from your int constructor and the implicitly-generated
// copy and move constructors, this will be a better match for any other type

在 C++20 或更高版本中,您可以使用 std::same_as 来防止隐式参数转换概念。

  Test(std::same_as<int> auto i)
{
value=i;
}

关于c++ - 为什么 'explicit' 关键字允许隐式转换?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28423522/

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