为什么我不能像这样定义隐式和显式运算符?
public class C
{
public static implicit operator string(C c)
{
return "implicit";
}
public static explicit operator string(C c)
{
return "explicit";
}
}
你可以做这个黑客:)
class Program
{
public class A
{
}
public class B
{
public static implicit operator A(B b)
{
Console.WriteLine("implicit");
return new A();
}
}
public class C : B
{
public static explicit operator A(C c)
{
Console.WriteLine("explicit");
return new A();
}
}
static void Main(string[] args)
{
C c = new C();
A a = c;
A b = (A) c;
}
}
打印:
implicit
explicit
答案 0 :(得分:44)
请检查:Why can't coexist implicit and explicit operator of the same type in C#?
如果您定义一个显式运算符,您将能够执行以下操作:
Thing thing = (Thing)"value";
如果您定义了一个隐式运算符,您仍然可以执行上述操作,但您也可以利用隐式转换:
Thing thing = "value";
简而言之,explicit只允许显式转换,而implicit允许显式和隐式......因此你只能定义一个。
答案 1 :(得分:9)
我不知道阻止这种情况的技术限制,但我认为他们会这样做是为了防止人们自行离开。
string imp = new C(); // = "implicit"
string exp = (string)new C(); // = "explicit"
这会让我感到疯狂,没有任何意义,C
只能以一种方式投射到一个字符串,而不是两种不同的方式。