C# 索引器(Indexer)

大纲:

1.语法
2.Indexer的重载
3.基于接口的Indexer和代码强壮性


1.语法部分 ( Syntax )


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

索引器(Indexer)的用途
索引器的行为的声明在某种程度上类似于属性(property)。就像属性(property),您可使用 get 和 set 访问器来定义索引器。但是,属性返回或设置一个特定的数据成员,而索引器返回或设置对象实例的一个特定值。换句话说,它把实例数据分为更小的部分,并索引每个部分,获取或设置每个部分。
定义一个属性(property)包括提供属性名称。索引器定义的时候不带有名称,但带有 this 关键字,它指向对象实例。

案例:
创建一个 ConsoleApplication

    class Program
    {
        //
        //Indexer
        //
        static void Main(string[] args)
        {
            var indexer = new IndexedNames();
            indexer[0] = "C#";
            indexer[1] = "Java";
            indexer[2] = "C";
            indexer[3] = "Javascript";
            indexer[4] = "Bootstrap";
            indexer[5] = "AngularJS";
            indexer[6] = "ASP.NET";
            indexer[7] = "Lambda Expression";
            indexer[8] = "Indexer";
            indexer[9] = "Linq";

            for (int i = 0; i <= 9; i++)
            {
                Console.WriteLine(indexer[i]);    
            }
            Console.ReadKey();
        }
    }

    class IndexedNames
    {
        private string[] nameList = new string[10];

        /// <summary>
        /// Constructor
        /// </summary>
        public IndexedNames()
        {
            for (int i = 0; i < nameList.Length; i++)
            {
                nameList[i] = "N/A";
            }
        }

        /// <summary>
        /// Indexer
        /// </summary>
        /// <param name="index">The value of incoming</param>
        /// <returns></returns>
        public string this[int index]
        {
            get
            {
                string temp = String.Empty; 
                //limit the range of the array "nameList" .
                if (index >= 0 && index <= nameList.Length - 1)
                {
                    temp = nameList[index];
                }
                return temp;
            }

            set
            {
                //limit the range of the array "nameList" .
                if (index >= 0 && index <= nameList.Length - 1)
                {
                   nameList[index] = value;
                }
            }
        }



    }

2.Indexer的重载

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

案例:
创建一个ConsoleApplication,下面贴出Program.cs:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Demo
{
    class Program
    {
        //
        //Indexer
        //
        static void Main(string[] args)
        {
            var indexer = new IndexedNames();
            indexer[0] = "C#";
            indexer[1] = "Java";
            indexer[2] = "C";
            indexer[3] = "Javascript";
            indexer[4] = "Bootstrap";
            indexer[5] = "AngularJS";
            indexer[6] = "ASP.NET";
            indexer[7] = "Lambda Expression";
            indexer[8] = "Indexer";
            indexer[9] = "Linq";

            for (int i = 0; i <= 9; i++)
            {
                Console.WriteLine(indexer[i]);    
            }

            Console.WriteLine(indexer["Linq"]);//9
            Console.WriteLine(indexer["Indexer"]);//8
            Console.WriteLine(indexer["Unique"]);//-1
            Console.ReadKey();
        }
    }

    class IndexedNames
    {
        private string[] nameList = new string[10];

        /// <summary>
        /// Constructor
        /// </summary>
        public IndexedNames()
        {
            for (int i = 0; i < nameList.Length; i++)
            {
                nameList[i] = "N/A";
            }
        }

        /// <summary>
        /// Indexer
        /// </summary>
        /// <param name="index">The value of incoming</param>
        /// <returns></returns>
        public string this[int index]
        {
            get
            {
                string temp = String.Empty; 
                //limit the range of the array "nameList" .
                if (index >= 0 && index <= nameList.Length - 1)
                {
                    temp = nameList[index];
                }
                return temp;
            }

            set
            {
                //limit the range of the array "nameList" .
                if (index >= 0 && index <= nameList.Length - 1)
                {
                   nameList[index] = value;
                }
            }
        }

        public int this[string name]
        {
            get
            {
                int index = 0;
                while (index <nameList.Length)
                {
                    if (nameList[index]==name)
                    {
                        return index;
                    }
                    index++;
                }
                return -1;
            }
        }



    }
}

按下F5运行后效果如图:
这里写图片描述

3.基于接口的Indexer和代码强壮性

 public interface ISomeInterface
    {
        int this[int index]
        {
            get;
            set;
        }
    }

    class IndexerClass : ISomeInterface
    {
        private int[] count = new int[100];

        public int this[int index]
        {
            get
            {
                if (index>=0 &&index<=count.Length-1)
                {

                return count[index];
                }
                return -1;
            }
             set
            {
                count[index] = value;
            }
        }
    }
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值