gpt4 book ai didi

c++ - 使用隐式字符串转换运算符的危险?

转载 作者:太空狗 更新时间:2023-10-29 21:18:14 25 4
gpt4 key购买 nike

在自定义字符串类中使用隐式 string 转换运算符有什么危险?

class MyString
{
public:

...

inline operator string() const { return str; }

private:
std::string str;
};

最佳答案

隐式转换的主要“危险”主要是:您可能会得到意外的转换。

如果您的字符串类在逻辑上可以用作 std::string,我认为没有问题。

关于c++ - 使用隐式字符串转换运算符的危险?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30531687/

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