我有一个接口,我在这样的类中实现了这个接口:
interface ITest
{
bool Method();
}
class MyClass:ITest
{
bool ITest.Method()
{
return true;
}
public bool Method()
{
return false;
}
}
类中的ITest.Method()方法有什么作用?
答案 0 :(得分:3)
例如,如果您有以下代码:
ITest first= new MyClass();
first.Method()
会致电bool ITest.Method();
或者如果你有:
MyClass second= new MyClass();
second.Method()
会致电bool Method()