瞭解下C# 屬性(Property)
導讀 | 屬性(Property) 是類(class)、結構(structure)和介面(interface)的命名(named)成員。類或結構中的成員變數或方法稱為 域(Field)。 |
屬性(Property)是域(Field)的擴充套件,且可使用相同的語法來訪問。它們使用 訪問器(accessors) 讓私有域的值可被讀寫或操作。
屬性(Property)不會確定儲存位置。相反,它們具有可讀寫或計算它們值的 訪問器(accessors)。
例如,有一個名為 Student 的類,帶有 age、name 和 code 的私有域。我們不能在類的範圍以外直接訪問這些域,但是我們可以擁有訪問這些私有域的屬性。
訪問器(Accessors)
屬性(Property)的訪問器(accessor)包含有助於獲取(讀取或計算)或設定(寫入)屬性的可執行語句。訪問器(accessor)宣告可包含一個 get 訪問器、一個 set 訪問器,或者同時包含二者。例如:
// 宣告型別為 string 的 Code 屬性public string Code{ get { return code; } set { code = value; }}// 宣告型別為 string 的 Name 屬性public string Name{ get { return name; } set { name = value; }}// 宣告型別為 int 的 Age 屬性>public int Age{ get { return age; } set { age = value; }}
例項
下面的例項演示了屬性(Property)的用法:
例項
using System ; namespace runoob { class Student { private string code = "N.A" ; private string name = "not known" ; private int age = 0 ; // 宣告型別為 string 的 Code 屬性 public string Code
{ get { return code ; } set { code = value ; } } // 宣告型別為 string 的 Name 屬性 public string Name
{ get { return name ; } set { name = value ; } } // 宣告型別為 int 的 Age 屬性 public int Age { get { return age ; } set { age = value ; } } public override string ToString ( ) { return "Code = " + Code + ", Name = " + Name + ", Age = " + Age ; } } class ExampleDemo { public static void Main ( ) { // 建立一個新的 Student 物件 Student s = new Student ( ) ; // 設定 student 的 code、name 和 age s . Code = "001" ; s . Name = "Zara" ; s . Age = 9 ; Console . WriteLine ( "Student Info: {0}", s ) ; // 增加年齡 s . Age += 1 ; Console . WriteLine ( "Student Info: {0}", s ) ; Console . ReadKey ( ) ; } } }
當上面的程式碼被編譯和執行時,它會產生下列結果:
Student Info: Code = 001, Name = Zara, Age = 9 Student Info: Code = 001, Name = Zara, Age = 10
抽象屬性(Abstract Properties)
抽象類可擁有抽象屬性,這些屬性應在派生類中被實現。下面的程式說明了這點:
例項
using System; namespace runoob { public abstract class Person { public abstract string Name { get; set; } public abstract int Age { get; set; } } class Student : Person { private string code = "N.A"; private string name = "N.A"; private int age = 0; // 宣告型別為 string 的 Code 屬性 public string Code { get { return code; } set { code = value; } } // 宣告型別為 string 的 Name 屬性 public override string Name { get { return name; } set { name = value; } } // 宣告型別為 int 的 Age 屬性 public override int Age { get { return age; } set { age = value; } } public override string ToString() { return "Code = " + Code +", Name = " + Name + ", Age = " + Age; } } class ExampleDemo { public static void Main() { // 建立一個新的 Student 物件 Student s = new Student(); // 設定 student 的 code、name 和 age s.Code = "001"; s.Name = "Zara"; s.Age = 9; Console.WriteLine("Student Info:- {0}", s); // 增加年齡 s.Age += 1; Console.WriteLine("Student Info:- {0}", s); Console.ReadKey(); } } }
當上面的程式碼被編譯和執行時,它會產生下列結果:
Student Info: Code = 001, Name = Zara, Age = 9 Student Info: Code = 001, Name = Zara, Age = 10
原文來自:
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69955379/viewspace-2904587/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Property屬性
- 瞭解下C# 迴圈C#
- 瞭解下C# 判斷C#
- 瞭解下C# 繼承C#繼承
- 瞭解下C# 類(Class)C#
- 瞭解下C# 變數C#變數
- 瞭解下C# 字串(String)C#字串
- 瞭解下C# 運算子C#
- 瞭解下C# 事件(Event)C#事件
- 瞭解下C# 介面(Interface)C#
- python物件屬性管理(2):property管理屬性Python物件
- 瞭解下C# 陣列(Array)C#陣列
- 瞭解下C# 索引器(Indexer)C#索引Index
- 瞭解下C# 程式結構C#
- 瞭解下C# 委託(Delegate)C#
- 瞭解下C# 多執行緒C#執行緒
- 瞭解下C# 異常處理C#
- 瞭解下C# 正規表示式C#
- 瞭解下C# 型別轉換C#型別
- 瞭解下C# 資料型別C#資料型別
- 瞭解下C# 運算子過載C#
- 瞭解下C# 結構體(Struct)C#結構體Struct
- 理解 Kotlin 中的屬性(property)Kotlin
- 瞭解下C# 可空型別(Nullable)C#型別Null
- 瞭解下C# 前處理器指令C#
- 瞭解下C# 名稱空間(Namespace)C#namespace
- Python深入淺出property特性屬性Python
- Android property屬性許可權新增Android
- 淺談 Swift 中的屬性(PropertySwift
- 瞭解下C# 不安全程式碼C#
- PLC結構化文字(ST)——屬性(Property)
- 問題No property 屬性名 found for type 類名
- 瞭解下C# 檔案的輸入與輸出C#
- C#屬性和lamdaC#
- 始終使用屬性(Property),而不是欄位(Data Member)
- 大致瞭解下websocketWeb
- Laravel bootstraper 瞭解下Laravelboot
- 瞭解下WSDL 埠