作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想将std::string
自动转换为我的my_type
类型,定义为typedef std::pair<std::string,int> my_type;
这样,转换后的.first
的my_type
部分为字符串,而.second
部分始终为0。
如果有人使用以下命令调用std::string fun(my_type x, ...) { return x.first; }
函数,它也应该起作用:std::string s = "Hello"; fun(s, ...);
。
我不想定义一个新的类而不是my_type
,如果可能的话,也不要重载我的所有函数。我试图把头放在如何使用operator
上,但是我无法编译我的程序。
编辑:
由于没有定义自定义结构似乎无法实现,因此,我想出了一种解决方法,但我希望无需定义新的类/结构就可以实现。不过,感谢您为我节省了更多时间来尝试执行此操作。
class Element {
public:
Element() {};
Element(std::string s, int a) { name = s; value = a; };
Element(std::string s) { name = s; value = 0; };
...
std::string return_name() { return name; };
private:
std::string name;
int value;
};
std::string fun(Element x) { return x.return_name(); };
std::string s = "Hello"; fun(s);
现在可以自动工作。
最佳答案
无法为现有类添加新的隐式转换,例如std::pair
。隐式转换只能是成员函数:
operator T() const
转换运算符。 struct MyPair : std::pair<std::string, int> {
// In this class scope pair now refers to std::pair<std::string, int>.
MyPair(std::string const& a)
: pair(a, 0)
{}
MyPair(pair const& a)
: pair(a)
{}
};
std::pair<std::string, int>
派生可以在期望
MyPair
的地方传递
std::pair<std::string, int>
。另一个将
std::pair<std::string, int>
转换为
MyPair
的构造函数。
关于c++ - 如何为typedef定义隐式转换?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59184426/
我是一名优秀的程序员,十分优秀!