【c#教程】C# 介面(Interface)

來源:互聯網
上載者:User

C# 介面(Interface)

介面定義了所有類繼承介面時應遵循的文法合約。介面定義了文法合約 "是什麼" 部分,衍生類別定義了文法合約 "怎麼做" 部分。

介面定義了屬性、方法和事件,這些都是介面的成員。介面只包含了成員的聲明。成員的定義是衍生類別的責任。介面提供了衍生類別應遵循的標準結構。

抽象類別在某種程度上與介面類似,但是,它們大多隻是用在當只有少數方法由基類聲明由衍生類別實現時。

聲明介面

介面使用 interface 關鍵字聲明,它與類的聲明類似。介面聲明預設是 public 的。下面是一個介面聲明的執行個體:

public interface ITransactions{   // 介面成員   void showTransaction();   double getAmount();}

執行個體

下面的執行個體示範了上面介面的實現:

using System.Collections.Generic;using System.Linq;using System.Text;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: 001Date: 8/10/2012Amount: 78900Transaction: 002Date: 9/10/2012Amount: 451900

以上就是【c#教程】C# 介面(Interface)的內容,更多相關內容請關注topic.alibabacloud.com(www.php.cn)!

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.