gpt4 book ai didi

c++ - std::runtime_error 中的显式构造函数

转载 作者:行者123 更新时间:2023-11-30 01:52:52 28 4
gpt4 key购买 nike

根据 cplusplus.com,这是 std::runtime_error 类的实现:

class runtime_error : public exception {
public:
explicit runtime_error (const string& what_arg);
};

由于构造函数是显式的,我希望它只接受 std::string 对象。

throw std::runtime_error("error message");

不过,此代码编译 (GCC)。编译器不应该提示隐式 const char* 到 const 字符串的转换吗?

最佳答案

这不是这里显式的意思。也许用一个例子来说明它是最简单的:

struct Foo
{
explicit Foo(const std::string& s) {}
};

void bar(const Foo&) {}

int main()
{
Foo f("hello"); // OK: explicit construction from std::string
Foo f2 = std::string("hello"); // ERROR
std::string s;
bar(s); // ERROR
}

在这里,explicit 转换构造函数意味着您不能从 std::string 隐式构造 Foo。但是您仍然可以从 const char* 构造一个 std::string

关于c++ - std::runtime_error 中的显式构造函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23896383/

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