C# 中的介面和繼承


介面

介面被定義為一個語法契約,所有繼承該介面的類都應遵循它。介面定義語法契約的“what”部分,而派生類定義語法契約的“how”部分。

讓我們看一個 C# 中介面的示例。

示例

 現場演示

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

namespace InterfaceApplication {

   public interface ITransactions {
      // interface members
      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

繼承

繼承允許我們根據另一個類定義一個類,這使得建立和維護應用程式變得更容易。這也為我們提供了重用程式碼功能的機會,並加快了執行時間。

繼承的概念實現了是關係。例如,哺乳動物是動物,狗是哺乳動物,因此狗也是動物,如此類推。

以下是顯示如何在 C# 中使用繼承的示例。

示例

 現場演示

using System;

namespace InheritanceApplication {
   class Shape {
      public void setWidth(int w) {
         width = w;
      }

      public void setHeight(int h) {
         height = h;
      }

      protected int width;
      protected int height;
   }

   // Derived class
   class Rectangle: Shape {
      public int getArea() {
         return (width * height);
      }
   }

   class RectangleTester {
      static void Main(string[] args) {
         Rectangle Rect = new Rectangle();
   
         Rect.setWidth(5);
         Rect.setHeight(7);

         // Print the area of the object.
         Console.WriteLine("Total area: {0}", Rect.getArea());
         Console.ReadKey();
      }
   }
}

輸出

Total area: 35

更新時間: 20 年 6 月 20 日

2K+ 瀏覽

開啟你的職業

透過完成課程來獲取證書

開始
廣告
© . All rights reserved.