程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> .NET 接口

.NET 接口

編輯:C#入門知識

    接口
  • 關鍵字
  • 可包含成員
  • 備注
  •  

    • 顯式接口實現
     IControl
    {
         Paint();
    }
     ISurface
    {
         Paint();
    }
     SampleClass : IControl, ISurface
    {
        
          Paint()
        {
        }
    }
    
      SampleClass : IControl, ISurface
    {
         IControl.Paint()
        {
            System.Console.WriteLine();
        }
         ISurface.Paint()
        {
            System.Console.WriteLine();
        }
    }
    
     SampleClass();
    IControl c = (IControl)obj;
    c.Paint();
    ISurface s = (ISurface)obj;
    s.Paint(); 
    
     ILeft
    {
         P { ;}
    }
     IRight
    {
         P();
    }
    
    
    
     Middle : ILeft, IRight
    {
          P() {  0; }
         ILeft.P {  {  0; } }
    }
    
      判斷類型是否支持指定接口


    • 構建可枚舉類型
    • 實現接口

     

      構建可克隆的對象
    • 實現接口

     

      構建可比較的對象
    • 實現接口

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved