codecamp

D编程 接口

接口是一种强制从其继承的类必须实现某些函数或变量的方式,不能在接口中实现函数,因为它需要在接口的继承类中实现。

当您想从一个接口继承而该类已经从另一个类继承时,则需要用逗号分隔该类的名称和接口的名称。

让我们看一个简单的示例,它说明了接口的用法。

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编程 封装
D编程 抽象类
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }