昏掉哦...楼主是外行吧?
using System;
namespace MyProject{ interface MyInterface { void Display(); // Class1必须实现这个方法 } class Class1:MyInterface { public void Display() { Console.WriteLine("Hello World"); } static void Main(string[] args) { MyInter iobj = new Class1(); iobj.Display(); } }}
但是。。如果省略了这个interface Myinterface{}语句。。对整个代码应该没有影响吧!!!那接口有着怎样的作用呢??
接口中的方法必須被實現