您好,登錄后才能下訂單哦!
這篇文章主要講解了“C#怎么實(shí)現(xiàn)多重繼承”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來(lái)研究和學(xué)習(xí)“C#怎么實(shí)現(xiàn)多重繼承”吧!
多重繼承指的是一個(gè)類(lèi)別可以同時(shí)從多于一個(gè)父類(lèi)繼承行為與特征的功能。與單一繼承相對(duì),單一繼承指一個(gè)類(lèi)別只可以繼承自一個(gè)父類(lèi)。
C# 不支持多重繼承。但是,您可以使用接口來(lái)實(shí)現(xiàn)多重繼承。下面的程序演示了這點(diǎn):
using System;
namespace InheritanceApplication
{
class Shape
{
public void setWidth(int w)
{
width = w;
}
public void setHeight(int h)
{
height = h;
}
protected int width;
protected int height;
}
// 基類(lèi) PaintCost
public interface PaintCost
{
int getCost(int area);
}
// 派生類(lèi)
class Rectangle : Shape, PaintCost
{
public int getArea()
{
return (width * height);
}
public int getCost(int area)
{
return area * 70;
}
}
class RectangleTester
{
static void Main(string[] args)
{
Rectangle Rect = new Rectangle();
int area;
Rect.setWidth(5);
Rect.setHeight(7);
area = Rect.getArea();
// 打印對(duì)象的面積
Console.WriteLine("總面積: {0}", Rect.getArea());
Console.WriteLine("油漆總成本: ${0}" , Rect.getCost(area));
Console.ReadKey();
}
}
}
當(dāng)上面的代碼被編譯和執(zhí)行時(shí),它會(huì)產(chǎn)生下列結(jié)果:
總面積: 35 油漆總成本: $2450
感謝各位的閱讀,以上就是“C#怎么實(shí)現(xiàn)多重繼承”的內(nèi)容了,經(jīng)過(guò)本文的學(xué)習(xí)后,相信大家對(duì)C#怎么實(shí)現(xiàn)多重繼承這一問(wèn)題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。