this索引符

索引符是一种特殊类型的属性,可以把她添加到一个类的定义中,一提供类似于数组的访问。

  在Card对象的Cards集合中添加索引符:

    public class Cards:CollectionBase

     {

         .....

        

       public Card this[int cardIndex]

         {

            get{ return (Card)List[cardIndex]; }

            set{ List[cardIndex]=value; }

         }

     }
在访问索引符时,将使用对象名,后跟放在方括号中的索引参数(例如 Cards[0])。

这段代码对List属性使用一个索引符.


IList.List属性返回的是一个System.Object对象;

简单的理解:在类中建立了索引符后才能调用[Index],例如:

   Cards deckCards = new Cards();

   ....

   当调用deckCards[index]时才能被编译器识别不会报错。

转载于:https://www.cnblogs.com/eagle1986/archive/2011/12/04/2276266.html

你可能感兴趣的:(this索引符)