C# 属性和索引

属性的set访问器包含隐式value参数,而对于索引器,除了value参数外,索引器的set访问器还具有与索引器相同的形参表。

        索引器使得对象可按照与数组相似的方法进行索引,索引器可被重载,当访问二维数组时可以有多个形参;索引器不必根据整数值进行索引,由你决定如何定义特定的查找机制;要声明类或结构上的索引器,请使用this关键字。

[csharp]  view plain copy print ?
  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.Text;  
  4. namespace Index  
  5. {  
  6.     class sample<T>  //这个类告诉我们如何使用客户端代码索引器  
  7.     {  
  8.         private T[] arr = new T[100];  
  9.         public T this[int i] //索引器的签名由其形参的数量和类型组成。  
  10.         {  
  11.             get { return arr[i];}  
  12.             set { arr[i] = value;}  
  13.         }  
  14.     }      
  15.     class IndexerClass  
  16.     {  
  17.         private int[] arr = new int[100]; //定义数组  
  18.         public int this[int index]   //索引器声明  
  19.         {  
  20.             get  
  21.             {  
  22.                 if (index < 0 || index >100)  return 0;  
  23.                 return arr[index];  
  24.             }  
  25.             set  
  26.             {  
  27.                 if (!(index < 0 || index > 100))  arr[index] = value;   
  28.             }  
  29.         }  
  30.     }  
  31.     class String_index  
  32.     {  
  33.         string[] days = { "Sun""Mon""Tues""Wed""Thurs""Fri""Sat" };  
  34.         private int GetDay(string testday)  
  35.         {  
  36.             int i = 0;  
  37.             foreach(string day in days)  
  38.             {  
  39.                 if (day == testday)  return i;  
  40.                 i++;  
  41.             }  
  42.             return -1;  
  43.         }  
  44.         public int this[string day]  
  45.         {  
  46.             getreturn GetDay(day); }  
  47.         }  
  48.     }  
  49.     class Program  
  50.     {  
  51.         static void Main(string[] args)  
  52.         {  
  53.             sample<string> string_value = new sample<string>();  
  54.             string_value[0] = "Hello world";  
  55.             System.Console.WriteLine(string_value[0]);  
  56.   
  57.             IndexerClass test = new IndexerClass();  
  58.             //调用索引器初始化第2、4个数据  
  59.             test[3] = 123;  
  60.             test[5] = 1024;  
  61.             for (int i = 0; i <= 10; i++ )  
  62.             { System.Console.WriteLine("数据为#{0} = {1}", i, test[i]);}  
  63.             String_index week = new String_index();  
  64.             System.Console.WriteLine("这是一周的第{0}天", week["Tues"]);  
  65.             Console.ReadKey();  
  66.         }  
  67.     }  
  68. }  
原文链接
http://blog.csdn.net/seawaywjd/article/details/7061155
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值