文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

一篇文章带你了解C# 索引器

2024-12-03 06:54

关注

概述

索引器(Indexer) 允许一个对象可以像数组一样使用下标的方式来访问。

当您为类定义一个索引器时,该类的行为就会像一个 虚拟数组(virtual array) 一样。您可以使用数组访问运算符 [ ] 来访问该类的的成员。

语法

一维索引器的语法如下:

  1. element-type this[int index
  2.    // get 访问器 
  3.    get 
  4.    { 
  5.       // 返回 index 指定的值 
  6.    } 
  7.  
  8.    // set 访问器 
  9.    set 
  10.    { 
  11.       // 设置 index 指定的值 
  12.    } 

索引器(Indexer)的用途

索引器的行为的声明在某种程度上类似于属性(property)。就像属性(property),您可使用 get 和 set 访问器来定义索引器。但是,属性返回或设置一个特定的数据成员,而索引器返回或设置对象实例的一个特定值。换句话说,它把实例数据分为更小的部分,并索引每个部分,获取或设置每个部分。

定义一个属性(property)包括提供属性名称。索引器定义的时候不带有名称,但带有 this 关键字,它指向对象实例。下面的实例演示了这个概念:

  1. using System; 
  2. namespace IndexerApplication 
  3.    class IndexedNames 
  4.    { 
  5.       private string[] namelist = new string[size]; 
  6.       static public int size = 10; 
  7.       public IndexedNames() 
  8.       { 
  9.          for (int i = 0; i < size; i++) 
  10.          namelist[i] = "N. A."
  11.       } 
  12.       public string this[int index
  13.       { 
  14.          get 
  15.          { 
  16.             string tmp; 
  17.  
  18.             if( index >= 0 && index <= size-1 ) 
  19.             { 
  20.                tmp = namelist[index]; 
  21.             } 
  22.             else 
  23.             { 
  24.                tmp = ""
  25.             } 
  26.  
  27.             return ( tmp ); 
  28.          } 
  29.          set 
  30.          { 
  31.             if( index >= 0 && index <= size-1 ) 
  32.             { 
  33.                namelist[index] = value; 
  34.             } 
  35.          } 
  36.       } 
  37.  
  38.       static void Main(string[] args) 
  39.       { 
  40.          IndexedNames names = new IndexedNames(); 
  41.          names[0] = "Zara"
  42.          names[1] = "Riz"
  43.          names[2] = "Nuha"
  44.          names[3] = "Asif"
  45.          names[4] = "Davinder"
  46.          names[5] = "Sunil"
  47.          names[6] = "Rubic"
  48.          for ( int i = 0; i < IndexedNames.size; i++ ) 
  49.          { 
  50.             Console.WriteLine(names[i]); 
  51.          } 
  52.          Console.ReadKey(); 
  53.       } 
  54.    } 

当上面的代码被编译和执行时,它会产生下列结果:

  1. Zara 
  2. Riz 
  3. Nuha 
  4. Asif 
  5. Davinder 
  6. Sunil 
  7. Rubic 
  8. N. A. 
  9. N. A. 
  10. N. A. 

重载索引器(Indexer)

索引器(Indexer)可被重载。索引器声明的时候也可带有多个参数,且每个参数可以是不同的类型。没有必要让索引器必须是整型的。C# 允许索引器可以是其他类型,例如,字符串类型。

下面的实例演示了重载索引器:

  1. using System; 
  2. namespace IndexerApplication 
  3.    class IndexedNames 
  4.    { 
  5.       private string[] namelist = new string[size]; 
  6.       static public int size = 10; 
  7.       public IndexedNames() 
  8.       { 
  9.          for (int i = 0; i < size; i++) 
  10.          { 
  11.           namelist[i] = "N. A."
  12.          } 
  13.       } 
  14.       public string this[int index
  15.       { 
  16.          get 
  17.          { 
  18.             string tmp; 
  19.  
  20.             if( index >= 0 && index <= size-1 ) 
  21.             { 
  22.                tmp = namelist[index]; 
  23.             } 
  24.             else 
  25.             { 
  26.                tmp = ""
  27.             } 
  28.  
  29.             return ( tmp ); 
  30.          } 
  31.          set 
  32.          { 
  33.             if( index >= 0 && index <= size-1 ) 
  34.             { 
  35.                namelist[index] = value; 
  36.             } 
  37.          } 
  38.       } 
  39.       public int this[string name
  40.       { 
  41.          get 
  42.          { 
  43.             int index = 0; 
  44.             while(index < size
  45.             { 
  46.                if (namelist[index] == name
  47.                { 
  48.                 return index
  49.                } 
  50.                index++; 
  51.             } 
  52.             return index
  53.          } 
  54.  
  55.       } 
  56.  
  57.       static void Main(string[] args) 
  58.       { 
  59.          IndexedNames names = new IndexedNames(); 
  60.          names[0] = "Zara"
  61.          names[1] = "Riz"
  62.          names[2] = "Nuha"
  63.          names[3] = "Asif"
  64.          names[4] = "Davinder"
  65.          names[5] = "Sunil"
  66.          names[6] = "Rubic"
  67.          // 使用带有 int 参数的第一个索引器 
  68.          for (int i = 0; i < IndexedNames.size; i++) 
  69.          { 
  70.             Console.WriteLine(names[i]); 
  71.          } 
  72.          // 使用带有 string 参数的第二个索引器 
  73.          Console.WriteLine(names["Nuha"]); 
  74.          Console.ReadKey(); 
  75.       } 
  76.    } 

当上面的代码被编译和执行时,它会产生下列结果:

  1. Zara 
  2. Riz 
  3. Nuha 
  4. Asif 
  5. Davinder 
  6. Sunil 
  7. Rubic 
  8. N. A. 
  9. N. A. 
  10. N. A. 

 

来源:UP技术控内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯