中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

C#中怎么實現多態性

c#
小億
96
2024-03-06 17:29:53
欄目: 編程語言

在C#中實現多態性一般通過繼承和接口實現。具體方法如下:

  1. 繼承:通過創建一個父類和多個子類,子類繼承父類的特性,并且可以重寫父類的方法來實現多態性。例如:
class Animal
{
    public virtual void MakeSound()
    {
        Console.WriteLine("Animal makes a sound");
    }
}

class Dog : Animal
{
    public override void MakeSound()
    {
        Console.WriteLine("Dog barks");
    }
}

class Cat : Animal
{
    public override void MakeSound()
    {
        Console.WriteLine("Cat meows");
    }
}

Animal myDog = new Dog();
Animal myCat = new Cat();

myDog.MakeSound(); // Output: Dog barks
myCat.MakeSound(); // Output: Cat meows
  1. 接口:通過定義一個接口,然后讓多個類實現這個接口,實現接口方法的多態性。例如:
interface IShape
{
    double GetArea();
}

class Circle : IShape
{
    public double Radius { get; set; }

    public double GetArea()
    {
        return Math.PI * Radius * Radius;
    }
}

class Rectangle : IShape
{
    public double Width { get; set; }
    public double Height { get; set; }

    public double GetArea()
    {
        return Width * Height;
    }
}

IShape myCircle = new Circle() { Radius = 5 };
IShape myRectangle = new Rectangle() { Width = 5, Height = 10 };

Console.WriteLine(myCircle.GetArea()); // Output: 78.54
Console.WriteLine(myRectangle.GetArea()); // Output: 50

通過以上兩種方法,可以實現不同類對象對同一個方法的調用,實現多態性。

0
互助| 鞍山市| SHOW| 韶关市| 昌宁县| 文安县| 靖宇县| 高淳县| 龙泉市| 赤峰市| 牟定县| 通江县| 南康市| 军事| 涪陵区| 衡阳县| 大庆市| 安多县| 淮阳县| 靖边县| 临清市| 文昌市| 吉木乃县| 建瓯市| 岳阳市| 通海县| 阜平县| 鹰潭市| 惠安县| 昭通市| 安岳县| 犍为县| 嘉祥县| 资源县| 通城县| 顺昌县| 佳木斯市| 永济市| 太保市| 玛沁县| 神木县|