public interface Imyinterface
{
void testMethod(); //我把这一句注释掉,一样可以有同样的结果
}
class InheritInterface : Imyinterface
{
public void testMethod()
{
Console.WriteLine("123");
}
}
class Program
{
static void Main(string[] args)
{
InheritInterface IInterface = new InheritInterface();
IInterface.testMethod();
Console.Read();
}
}
声明接口时就算没有方法testMethod这个成员也有同样的结果,那为什么不把void testMethod(); 这句注释掉 |
|