c#索引

1、下标是数字的索引创建

        private string[] str = new string[10];
        public string this[int index]
        {
            get
            {
                return str[index];
            }
            set
            {
                str[index] = value;
            }
        }

2、

 2、索引器与数组的区别:

  • 索引器的索引值(Index)类型不限定为整数:

        用来访问数组的索引值(Index)一定为整数,而索引器的索引值类型可以定义为其他类型。

  • 索引器允许重载

        一个类不限定为只能定义一个索引器,只要索引器的函数签名不同,就可以定义多个索引器,可以重载它的功能。

  • 索引器不是一个变量

        索引器没有直接定义数据存储的地方,而数组有。索引器具有Get和Set访问器。

3、索引器与属性的区别:

  • 索引器以函数签名方式 this 来标识,而属性采用名称来标识,名称可以任意
  • 索引器可以重载,而属性不能重载。
  • 索引器不能用static 来进行声明,而属性可以。索引器永远属于实例成员,因此不能声明为static。

4、以字符串为下标的索引

        public Hashtable name = new Hashtable();
        public string this[string Index]
        {
            get
            {
                return name[Index].ToString();
            }
            set
            {
                name.Add(Index, value);
            }
        }

转载自https://www.cnblogs.com/lxblog/p/3940261.html

 

你可能感兴趣的:(c#索引)