明輝手游網(wǎng)中心:是一個免費提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺!

C#圖文詳細(xì)教程第10課:屬性

[摘要]本節(jié)課將介紹C#的屬性,其目的包括:1.理解什么是屬性2.如何實現(xiàn)屬性3.創(chuàng)建一個只讀屬性4.創(chuàng)建一個只寫屬性屬性是C#中獨具特色的新功能。通過屬性來讀寫類中的域,這具有一定的保護(hù)功能。在其它語言中...
本節(jié)課將介紹C#的屬性,其目的包括:
1.理解什么是屬性

2.如何實現(xiàn)屬性

3.創(chuàng)建一個只讀屬性

4.創(chuàng)建一個只寫屬性

屬性是C#中獨具特色的新功能。通過屬性來讀寫類中的域,這具有一定的保護(hù)功能。在其它語言中,這是通過實現(xiàn)特定的getter和setter方法來實現(xiàn)的。C#的屬性具有保護(hù)功能,可以讓你就象訪問域一樣訪問屬性。要了解屬性的用法,我們先來看看如何用傳統(tǒng)的方法對域進(jìn)行封裝。

1.清單 10-1. 傳統(tǒng)的訪問類的域的例子:Accessors.cs

using System;
public class PropertyHolder
{
private int someProperty = 0;
public int getSomeProperty()
{
return someProperty;
}
public void setSomeProperty(int propValue)
{
someProperty = propValue;
}
}

public class PropertyTester
{
public static int Main(string[] args)
{
PropertyHolder propHold = new PropertyHolder();
propHold.setSomeProperty(5);
Console.WriteLine("Property Value: {0}", propHold.getSomeProperty());
return 0;
}
}

說明

1.清單 10-1 演示了用傳統(tǒng)方法訪問類的域的例子。

PropertyHolder類有個我們感興趣的域someProperty, PropertyHolder類帶有兩個方法:getSomeProperty和setSomeProperty。getSomeProperty方法返回someProperty域的值。SetSomeProperty方法設(shè)置域someProperty的值。

2.類PropertyTester使用類PropertyHolder中的方法來獲取someProperty域的值。

Main方法中新創(chuàng)建了一個PropertyHolder對象,之后通過使用setSomeProperty方法,調(diào)用propHold對象的setSomeProperty方法,設(shè)置其值為5。之后,調(diào)用Console.WriteLine方法輸出屬性值。對propHold對象的getSomeProperty的調(diào)用,是用來獲取屬性值的。它輸出"Property Value: 5"到控制臺。

3.這種傳統(tǒng)的訪問域的信息的方法是很好的,因為它支持面向?qū)ο蟮姆庋b的概念。

如果在對域someProperty的實現(xiàn)中,域的類型從int 類型變?yōu)閎yte類型,上述的方法仍然適用。現(xiàn)在,如果采用屬性的話,其實現(xiàn)會做得更為平滑。

2.清單 10-2. 使用屬性訪問類的域:Properties.cs

using System;
public class PropertyHolder
{
private int someProperty = 0;
public int SomeProperty
{
get
{
return someProperty;
}
set
{
someProperty = value;
}
}
}

public class PropertyTester
{
public static int Main(string[] args)
{
PropertyHolder propHold = new PropertyHolder();
propHold.SomeProperty = 5;
Console.WriteLine("Property Value: {0}", propHold.SomeProperty);
return 0;
}
}

說明

1.清單 10-2 演示了如何創(chuàng)建和使用屬性。

PropertyHolder類中有個"SomeProperty" 屬性的實現(xiàn)。注意:屬性名的首字母必須大寫,這是屬性名"SomeProperty"和域名"someProperty"的唯一區(qū)別。屬性有兩種訪問操作:get和set。Get訪問操作返回的是someProperty域的值。Set訪問操作是設(shè)置someProperty域的值,其值為"value"的內(nèi)容。Set訪問符號后面的"value"是C#中的保留字。通常,在其他場合下使用"value"關(guān)鍵字會出錯。。

2.PropertyTester 類使用PropertyHolder類中的SomeProperty屬性。

在Main方法的第一行中, 創(chuàng)建了PropertyHolder對象propHold。之后,把propHold對象的 someProperty 域的值設(shè)置為5,很簡單,就象對域賦值一樣,給屬性賦值。

3.Console.WriteLine方法輸出 propHold對象的someProperty域的值。

這是通過使用propHold對象的SomeProperty屬性來完成的。很簡單,就象對域賦值一樣,賦值給屬性。屬性可以設(shè)置為只讀的,這可以通過在屬性的實現(xiàn)中只設(shè)一個get訪問符號來實現(xiàn)。

3.清單 10-3. 只讀屬性: ReadOnlyProperty.cs

using System;
public class PropertyHolder
{
private int someProperty = 0;
public PropertyHolder(int propVal)
{
someProperty = propVal;
}
public int SomeProperty
{
get
{
return someProperty;
}
}
}

public class PropertyTester
{
public static int Main(string[] args)
{
PropertyHolder propHold = new PropertyHolder(5);
Console.WriteLine("Property Value: {0}", propHold.SomeProperty);
return 0;
}
}

說明

1.清單10-3 演示了如何實現(xiàn)只讀屬性。

PropertyHolder類中,SomeProperty 屬性只有一個get訪問操作,沒有用到set訪問操作。PropertyHolder類中還有個接受整型參數(shù)的構(gòu)造函數(shù)。

2.在PropertyTester類的Main方法中,創(chuàng)建了新名為propHold的PropertyHolder類的對象。

propHold對象在實例化時,調(diào)用了帶參數(shù)的PropertyHolder構(gòu)造函數(shù)。在本例中,參數(shù)值為5,這對propHold 對象的someProperty域的值進(jìn)行了初始化。

3.因為PropertyHolder 類的SomeProperty屬性是只讀的,所以沒有其他的方法來設(shè)置someProperty域的值。

如果你插入了"propHold.SomeProperty = 7"語句到程序清單中,該程序編譯將不會通過,因為SomeProperty是只讀屬性。在Console.WriteLine 方法中使用SomeProperty屬性時,程序執(zhí)行正常。這是因為該方法調(diào)用了SomeProperty屬性的get訪問操作,這是個只讀操作。

4.清單 10-4. 只寫屬性: WriteOnlyProperty.cs

using System;
public class PropertyHolder
{
private int someProperty = 0;
public int SomeProperty
{
set
{
someProperty = value;
Console.WriteLine("someProperty is equal to {0}", someProperty);
}
}
}

public class PropertyTester
{
public static int Main(string[] args)
{
PropertyHolder propHold = new PropertyHolder();
propHold.SomeProperty = 5;
return 0;
}
}

說明

1.清單 10-4 演示了如何創(chuàng)建和使用只寫屬性。

這一次,在PropertyHolder類中的SomeProperty屬性中,去掉了get訪問操作,而加上了set訪問操作。其功能是輸出someProperty域的值。

2.在PropertyTester 類中的Main方法中,用缺省的構(gòu)造函數(shù)對PropertyTester類進(jìn)行初始化。

之后,使用propHold 對象的SomeProperty屬性,設(shè)置該域的值為5。這就調(diào)用了propHold 對象的set訪問操作, 把someProperty 域的值設(shè)置為5,最后,把"someProperty is equal to 5"的信息輸出到控制臺。

小結(jié)
現(xiàn)在,你已經(jīng)了解了什么是屬性,以及屬性的使用方法,你也了解了使用屬性和使用傳統(tǒng)的類的方法之間的區(qū)別。屬性可以是只讀的,也可以是只寫的,每種場合下的使用方法,你都有所了解。