c#8.0 [操作系统入门]
接口的默认实现
实现类中可以不实现接口中有默认实现的方法,以下代码不报错
public interface IPerson {
void Say()
{
Console.WriteLine("hello");
}
}
public class Teacher:IPerson
{
}
但是不可以通过实现类的实例调用接口中的方法,因为没有实现,只能通过接口调
IPerson p = new Teacher();p.Say();
接口的静态成员
public interface IPerson {
private static string DefaultName = "fan";
static void SetDefaultName(string name)
{
DefaultName = name;
}
}
然后在调用的时候,我们可以在IPerson接口上先设置默认值:
IPerson.SetDefaultName("fan11111");IPerson p = new Teacher();
c#8.0
以上是 c#8.0 [操作系统入门] 的全部内容, 来源链接: utcz.com/z/519421.html