class Student: ICha //继承接口 并要实现接口里面的所有方法
{
public void use(string s) //无需override 在 子类里面 实现 接口里面的方法叫(实现方法)
{
Console.WriteLine(s);
}
}
class Program
{
static void Main(string[] args)
{
//Student stu = new Student();
//stu.use("电风戽");
//stu.use("空调");
//ICha ic = new ICha(); //接口不能实例化,不能new
}
}