class x : y
{
public static bool x operator >(x i1, x i2)
{
// ****
}
}
是否可以调用>来自****的y级?如果是这样,怎么样?
答案 0 :(得分:4)
向上转发x
到y
,您应该可以致电y
的实施。
class x : y
{
public static bool x operator >(x i1, x i2)
{
bool greater = (y)i1 > (y)i2;
return whatever;
}
}