我正在使用一个需要隐式运算符来反对字符串的结构,并遇到了一个我没想过的基本问题。
public static implicit operator Version (string value) {...}
我可以理解只有显式运算符来强制执行转换,但如果隐式运算符已经过载,则无法想到需要它的情况。有吗?
答案 0 :(得分:8)
没有。实际上,无法为同一转换定义隐式显式转换运算符。这是一个编译时错误:
public class Foo
{
public static implicit operator Foo(string value)
{
Console.WriteLine("implicit");
return null;
}
public static explicit operator Foo(string value)
{
Console.WriteLine("Explicit");
return null;
}
}
它给出错误:
类型中的用户定义转换重复
...
如果你定义了一个隐式转换,你可以写出一个显式转换,它将使用隐式转换的代码来进行转换,但是没有办法为隐式转换和显式转换定义不同的东西。