C#中怎么實(shí)現(xiàn)接口和抽象類

c#
小億
101
2024-04-03 15:55:04
欄目: 編程語言

在C#中,可以通過以下方式來實(shí)現(xiàn)接口和抽象類:

接口:

interface IExampleInterface
{
    void Method1();
    void Method2();
}

public class ExampleClass : IExampleInterface
{
    public void Method1()
    {
        Console.WriteLine("Method1 implementation");
    }

    public void Method2()
    {
        Console.WriteLine("Method2 implementation");
    }
}

抽象類:

public abstract class ExampleAbstractClass
{
    public abstract void Method1();
    public void Method2()
    {
        Console.WriteLine("Method2 implementation");
    }
}

public class ConcreteClass : ExampleAbstractClass
{
    public override void Method1()
    {
        Console.WriteLine("Method1 implementation");
    }
}

在實(shí)現(xiàn)接口時(shí),需要將接口名稱放在類名后面的冒號(hào)之后,并實(shí)現(xiàn)接口中定義的所有方法。

在實(shí)現(xiàn)抽象類時(shí),需要使用abstract關(guān)鍵字定義抽象方法,并使用override關(guān)鍵字重寫抽象方法。抽象類中可以包含非抽象方法的實(shí)現(xiàn)。

0