程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> C#語法練習(9): 類[一] - 訪問限制、方法、字段、屬性(3)

C#語法練習(9): 類[一] - 訪問限制、方法、字段、屬性(3)

編輯:關於C語言

方法的訪問限制:

using System;

class MyClass
{
   /* private: 類自身使用的私有方法, 這是默認的 */
   string Method1()     { return "Method1"; }
   private string Method2() { return "Method2"; }

   /* protected: 子類可以繼承的方法 */
   protected string Method3() { return "Method3"; }

   /* internal: 當前項目可以使用的方法 */
   internal string Method4() { return "Method4"; }

   /* public: 公開的方法 */
   public string Method5()  { return "Method5"; }
}

class Program
{
   static void Main()
   {
     MyClass obj = new MyClass();

     /* 由於訪問級別的限制, MyClass 的 Method1、Method2、Method3 都不能訪問 */

     Console.WriteLine(obj.Method4()); //Method4
     Console.WriteLine(obj.Method5()); //Method5

     Console.ReadKey();
   }
}

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