C# 接口

2018-09-27 16:29 更新

接口

一個接口定義為一種句法的合同,所有類繼承接口應(yīng)遵循。這個接口定義了部分的句法合同“是什么(what)”和派生類定義了部分的句法合同“怎么做(how)”。

接口定義的屬性,方法和事件,是接口的成員。接口只包含成員的聲明。它是派生類定義的成員的責(zé)任。它提供一個派生類可以采用的標(biāo)準(zhǔn)的結(jié)構(gòu)。

抽象類在一定程度上服務(wù)于同一個目的,然而,它們主要用于基類的方法和派生類中實現(xiàn)的功能。

接口的聲明

接口使用關(guān)鍵字 interface 聲明。它類似于類的聲明。接口聲明缺省為 public 類型。以下是一個接口聲明的例子:

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

示例

下面的示例演示上述接口的實現(xiàn):

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();
      }
   }
}

編譯執(zhí)行上述代碼,得到如下結(jié)果:

Transaction: 001
Date: 8/10/2012
Amount: 78900
Transaction: 002
Date: 9/10/2012
Amount: 451900
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號