C#中基类、派生类以及使用接口来实现多重继承

更新时间:2023-07-08 10:02:17 阅读: 评论:0

C#中基类、派⽣类以及使⽤接⼝来实现多重继承
继承是⾯向对象程序设计中最重要的概念之⼀。继承允许我们根据⼀个类来定义另⼀个类来定义⼀个类,这使得创建和维护应⽤程序变得更容易。同时也有利于重⽤代码和节省开发时间。
当创建⼀个类时,程序员不需要完全重新编写新的数据成员和成员函数,只需要设计⼀个新的类,继承了已有的类的成员即可。这个已有的类被称为的基类,这个新的类被称为派⽣类。
everything but the girl
继承的思想实现了 属于(IS-A) 关系。例如,哺乳动物 属于(IS-A) 动物,狗 属于(IS-A) 哺乳动物,因此狗 属于(IS-A) 动物。基类和派⽣类
⼀个类可以派⽣⾃多个类或接⼝,这意味着它可以从多个基类或接⼝继承数据和函数。
C# 中创建派⽣类的语法如下:
<acess-specifier> class <ba_class>
{
...
}
class <derived_class> : <ba_class>
{
...
}
假设,有⼀个基类 Shape,它的派⽣类是 Rectangle:
{
public void tWidth(int w)
{
width = w;
}
public void tHeight(int h)
{
height = h;
}
protected int width;
protected int height;
}
// 派⽣类
class Rectangle: Shape
{
public int getArea()
{
return (width * height);
}
}
class RectangleTester
{
static void Main(string[] args)
{
Rectangle Rect = new Rectangle();
Rect.tWidth(5);
Rect.tHeight(7);
/
/ 打印对象的⾯积
Console.WriteLine("总⾯积: {0}",  Area());
Console.ReadKey();
borgia}
}
}
当上⾯的代码被编译和执⾏时,它会产⽣下列结果:
祛斑美白方法总⾯积: 35
基类的初始化
派⽣类继承了基类的成员变量和成员⽅法。因此⽗类对象应在⼦类对象创建之前被创建。您可以在成员初始化列表中进⾏⽗类的初始化。下⾯的程序演⽰了这点:
{
// 成员变量
protected double length;
protected double width;
public Rectangle(double l, double w)
{
length = l;
width = w;
}
public double GetArea()
{
return length * width;
}
public void Display()
{
Console.WriteLine("长度: {0}", length);
Console.WriteLine("宽度: {0}", width);
Console.WriteLine("⾯积: {0}", GetArea());
}
}//end class Rectangle
class Tabletop : Rectangle
{
private double cost;
public Tabletop(double l, double w) : ba(l, w)
{ }
public double GetCost()
{
double cost;
cost = GetArea() * 70;
return cost;
}
public void Display()
{
ba.Display();
Console.WriteLine("成本: {0}", GetCost());
}
}
class ExecuteRectangle
{
static void Main(string[] args)公共英语三级口语
{
Tabletop t = new Tabletop(4.5, 7.5);
t.Display();
Console.ReadLine();
}
}
}
当上⾯的代码被编译和执⾏时,它会产⽣下列结果:
长度: 4.5
宽度: 7.5
⾯积: 33.75
成本: 2362.5
C# 多重继承
C# 不⽀持多重继承。但是,您可以使⽤接⼝来实现多重继承。下⾯的程序演⽰了这点:
{
public void tWidth(int w)
心理防御机制{
width = w;
}
public void tHeight(int h)
{
height = h;
}
protected int width;
protected int height;
}
// 基类 PaintCost
public interface PaintCost
英语周报答案2020 2021{
int getCost(int area);
}
// 派⽣类
overwriteclass 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.tWidth(5);
Rect.tHeight(7);
area = Area();whether是什么意思
// 打印对象的⾯积
Console.WriteLine("总⾯积: {0}",  Area());
Console.WriteLine("油漆总成本: ${0}" , Cost(area));
Console.ReadKey();
}
}
}
当上⾯的代码被编译和执⾏时,它会产⽣下列结果:
总⾯积: 35
油漆总成本: $2450

本文发布于:2023-07-08 10:02:17,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/90/170897.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:成员   继承   代码   创建
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图