黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

C# 索引器 Indexer

c# 索引器 indexer

索引器(indexer) 允許一個對象可以像數(shù)組一樣使用下標(biāo)的方式來訪問。

當(dāng)您為類定義一個索引器時,該類的行為就會像一個 虛擬數(shù)組(virtual array) 一樣。您可以使用數(shù)組訪問運算符 [ ] 來訪問該類的的成員。

 

1. 語法

一維索引器的語法如下:

element-type this[int index] 
{
? ?// get 訪問器
? ?get 
? ?{
? ? ? // 返回 index 指定的值
? ?}

? ?// set 訪問器
? ?set 
? ?{
? ? ? // 設(shè)置 index 指定的值 
? ?}
}

 

2. 索引器(indexer)的用途

索引器的行為的聲明在某種程度上類似于屬性(property)。就像屬性(property),您可使用 getset 訪問器來定義索引器。但是,屬性返回或設(shè)置一個特定的數(shù)據(jù)成員,而索引器返回或設(shè)置對象范例的一個特定值。換句話說,它把范例數(shù)據(jù)分為更小的部分,并索引每個部分,獲取或設(shè)置每個部分。

定義一個屬性(property)包括提供屬性名稱。索引器定義的時候不帶有名稱,但帶有 this 關(guān)鍵字,它指向?qū)ο蠓独?。下面的范例演示了這個概念:

using system;
namespace indexerapplication
{
? ?class indexednames
? ?{
? ? ? private string[] namelist = new string[size];
? ? ? static public int size = 10;
? ? ? public indexednames()
? ? ? {
? ? ? ? ?for (int i = 0; i < size; i++)
? ? ? ? ?namelist[i] = "n. a.";
? ? ? }
? ? ? public string this[int index]
? ? ? {
? ? ? ? ?get
? ? ? ? ?{
? ? ? ? ? ? string tmp;

? ? ? ? ? ? if( index >= 0 && index <= size-1 )
? ? ? ? ? ? {
? ? ? ? ? ? ? ?tmp = namelist[index];
? ? ? ? ? ? }
? ? ? ? ? ? else
? ? ? ? ? ? {
? ? ? ? ? ? ? ?tmp = "";
? ? ? ? ? ? }

? ? ? ? ? ? return ( tmp );
? ? ? ? ?}
? ? ? ? ?set
? ? ? ? ?{
? ? ? ? ? ? if( index >= 0 && index <= size-1 )
? ? ? ? ? ? {
? ? ? ? ? ? ? ?namelist[index] = value;
? ? ? ? ? ? }
? ? ? ? ?}
? ? ? }

? ? ? static void main(string[] args)
? ? ? {
? ? ? ? ?indexednames names = new indexednames();
? ? ? ? ?names[0] = "zara";
? ? ? ? ?names[1] = "riz";
? ? ? ? ?names[2] = "nuha";
? ? ? ? ?names[3] = "asif";
? ? ? ? ?names[4] = "davinder";
? ? ? ? ?names[5] = "sunil";
? ? ? ? ?names[6] = "rubic";
? ? ? ? ?for ( int i = 0; i < indexednames.size; i++ )
? ? ? ? ?{
? ? ? ? ? ? console.writeline(names[i]);
? ? ? ? ?}
? ? ? ? ?console.readkey();
? ? ? }
? ?}
}

當(dāng)上面的代碼被編譯和執(zhí)行時,它會產(chǎn)生下列結(jié)果:

zara
riz
nuha
asif
davinder
sunil
rubic
n. a.
n. a.
n. a.

 

3. 重載索引器(indexer)

索引器(indexer)可被重載。索引器聲明的時候也可帶有多個參數(shù),且每個參數(shù)可以是不同的類型。沒有必要讓索引器必須是整型的。c# 允許索引器可以是其他類型,例如,字符串類型。

下面的范例演示了重載索引器:

using system;
namespace indexerapplication
{
? ?class indexednames
? ?{
? ? ? private string[] namelist = new string[size];
? ? ? static public int size = 10;
? ? ? public indexednames()
? ? ? {
? ? ? ? ?for (int i = 0; i < size; i++)
? ? ? ? ?{
? ? ? ? ? namelist[i] = "n. a.";
? ? ? ? ?}
? ? ? }
? ? ? public string this[int index]
? ? ? {
? ? ? ? ?get
? ? ? ? ?{
? ? ? ? ? ? string tmp;

? ? ? ? ? ? if( index >= 0 && index <= size-1 )
? ? ? ? ? ? {
? ? ? ? ? ? ? ?tmp = namelist[index];
? ? ? ? ? ? }
? ? ? ? ? ? else
? ? ? ? ? ? {
? ? ? ? ? ? ? ?tmp = "";
? ? ? ? ? ? }

? ? ? ? ? ? return ( tmp );
? ? ? ? ?}
? ? ? ? ?set
? ? ? ? ?{
? ? ? ? ? ? if( index >= 0 && index <= size-1 )
? ? ? ? ? ? {
? ? ? ? ? ? ? ?namelist[index] = value;
? ? ? ? ? ? }
? ? ? ? ?}
? ? ? }
? ? ? public int this[string name]
? ? ? {
? ? ? ? ?get
? ? ? ? ?{
? ? ? ? ? ? int index = 0;
? ? ? ? ? ? while(index < size)
? ? ? ? ? ? {
? ? ? ? ? ? ? ?if (namelist[index] == name)
? ? ? ? ? ? ? ?{
? ? ? ? ? ? ? ? return index;
? ? ? ? ? ? ? ?}
? ? ? ? ? ? ? ?index++;
? ? ? ? ? ? }
? ? ? ? ? ? return index;
? ? ? ? ?}

? ? ? }

? ? ? static void main(string[] args)
? ? ? {
? ? ? ? ?indexednames names = new indexednames();
? ? ? ? ?names[0] = "zara";
? ? ? ? ?names[1] = "riz";
? ? ? ? ?names[2] = "nuha";
? ? ? ? ?names[3] = "asif";
? ? ? ? ?names[4] = "davinder";
? ? ? ? ?names[5] = "sunil";
? ? ? ? ?names[6] = "rubic";
? ? ? ? ?// 使用帶有 int 參數(shù)的第一個索引器
? ? ? ? ?for (int i = 0; i < indexednames.size; i++)
? ? ? ? ?{
? ? ? ? ? ? console.writeline(names[i]);
? ? ? ? ?}
? ? ? ? ?// 使用帶有 string 參數(shù)的第二個索引器
? ? ? ? ?console.writeline(names["nuha"]);
? ? ? ? ?console.readkey();
? ? ? }
? ?}
}

當(dāng)上面的代碼被編譯和執(zhí)行時,它會產(chǎn)生下列結(jié)果:

zara
riz
nuha
asif
davinder
sunil
rubic
n. a.
n. a.
n. a.
2

下一節(jié):c# 委托 delegate

c# 教程

相關(guān)文章