C# - 接口

接口被定义为一种语法契约,所有继承该接口的类都应遵循该契约。接口定义了语法契约中"什么"部分,而派生类定义了语法契约中"如何"部分。

接口定义属性、方法和事件,它们是接口的成员。接口仅包含成员的声明。定义成员是派生类的责任。这通常有助于提供派生类应遵循的标准结构。

抽象类在某种程度上也具有相同的用途,但它们主要用于基类只需声明少量方法,而派生类实现其功能的情况。

声明接口

使用 interface 关键字声明接口。它类似于类声明。接口声明默认为 public。以下是接口声明的示例 -

public interface ITransactions {
    // 接口成员
    void showTransaction();
    double getAmount();
}

示例

以下示例演示了上述接口的实现 -

using System.Collections.Generic;
using System.Linq;
using System.Text;
using System;

namespace InterfaceApplication {
   
   public interface ITransactions {
      // 接口成员
      void showTransaction();
      double getAmount();
   }
   public class Transaction : ITransactions {
      private string tCode;
      private string date;
      private double amount;
      
      public Transaction() {
         tCode = " ";
         date = " ";
         amount = 0.0;
      }
      public Transaction(string c, string d, double a) {
         tCode = c;
         date = d;
         amount = a;
      }
      public double getAmount() {
         return amount;
      }
      public void showTransaction() {
         Console.WriteLine("Transaction: {0}", tCode);
         Console.WriteLine("Date: {0}", date);
         Console.WriteLine("Amount: {0}", getAmount());
      }
   }
   class Tester {
     
      static void Main(string[] args) {
         Transaction t1 = new Transaction("001", "8/10/2012", 78900.00);
         Transaction t2 = new Transaction("002", "9/10/2012", 451900.00);
         
         t1.showTransaction();
         t2.showTransaction();
         Console.ReadKey();
      }
   }
}

当编译并执行上述代码时,它会产生以下结果 -

Transaction: 001
Date: 8/10/2012
Amount: 78900
Transaction: 002
Date: 9/10/2012
Amount: 451900