阅读(3739)
赞(16)
D编程 接口
2021-09-01 10:46:19 更新
接口是一种强制从其继承的类必须实现某些函数或变量的方式,不能在接口中实现函数,因为它需要在接口的继承类中实现。
当您想从一个接口继承而该类已经从另一个类继承时,则需要用逗号分隔该类的名称和接口的名称。
让我们看一个简单的示例,它说明了接口的用法。
import std.stdio;
//Base class
interface Shape {
public:
void setWidth(int w);
void setHeight(int h);
}
//Derived class
class Rectangle: Shape {
int width;
int height;
public:
void setWidth(int w) {
width=w;
}
void setHeight(int h) {
height=h;
}
int getArea() {
return (width * height);
}
}
void main() {
Rectangle Rect=new Rectangle();
Rect.setWidth(5);
Rect.setHeight(7);
//Print the area of the object.
writeln("Total area: ", Rect.getArea());
}
编译并执行上述代码后,将产生以下输出-
Total area: 35
Final 函数和 Static 函数接口
接口可以具有final和static方法,其自身应包含对其的定义,这些函数不能被子类覆盖,一个简单的如下所示。
import std.stdio;
//Base class
interface Shape {
public:
void setWidth(int w);
void setHeight(int h);
static void myfunction1() {
writeln("This is a static method");
}
final void myfunction2() {
writeln("This is a final method");
}
}
//Derived class
class Rectangle: Shape {
int width;
int height;
public:
void setWidth(int w) {
width=w;
}
void setHeight(int h) {
height=h;
}
int getArea() {
return (width * height);
}
}
void main() {
Rectangle rect=new Rectangle();
rect.setWidth(5);
rect.setHeight(7);
//Print the area of the object.
writeln("Total area: ", rect.getArea());
rect.myfunction1();
rect.myfunction2();
}
编译并执行上述代码后,将产生以下输出-
Total area: 35
This is a static method
This is a final method
← D编程 封装