What is the real use of indexer in C#? It looks pretty confusing as I am a new c# programmer. it looks like an array but of objects but it's not. My second question is about enums .Why can't I have Char type enums wht's the problem? Please explain me with example so that I can understand it better.
|
You can think of an indexer as a Property that takes a parameter. What you do with this parameter is up to you. Generally, the indexers are used where providing , well, an index to your object makes sense. For instance, if your object deals with collections of items, being able to access them using a simple I wrote a blog entry a while ago on the aspects of indexers using reflection.
And then you could use it like this:
That's just to show you can twist the purpose of an indexer to do what you want. |
||||
|
|
|
Any collection in .NET, whether they are ArrayLists or generic Lists, have, behind the scenes arrays in their underlying structure. Indexers are merely a way to change how regular array indexes work, whether by accepting strings as an input to look for a corresponding object with that property, or some other input. But, again, underneath all that syntactic sugar, it's still ends up with a representation to an array. This article might help explain how custom indexers are made. On your second point, Enums are integers. If you need character representations of enums, you're limited to string manipulation, or you can decorate your enums with appropriate attributes so that they will emit your desired string or character representation. |
|||
|
|
|
Indexers allow instances of a class or struct to be indexed just like arrays, they are most frequently implemented in types whose primary purpose is to encapsulate an internal collection or array. A get accessor returns a value and a set accessor assigns a value:
With the enums, they defined values are limited to a small set of primitive integral types (byte, sbyte, short, ushort, int, uint, long, ulong). The char type is also a integral type, but it differs from the other integral types in two ways:
|
|||
|
|
|
The purpose of an indexer is just that it works like an array, but you specify code for what's happening when you read from and write to the indexer. An indexer could do pretty much anything to provide a collection like behviour. Usually there is some kind of private collection that you offer read or read/write access to using the indexer. An enum can not use char as it's base type, but you can use character literals to specify an integer value:
Characters.Alpha will have the value 97, and Characters.Alpha.ToString() will return the string "Alpha". (char)Characters.Alpha gives the value 'a'. |
|||
|
|
|
Regarding enums, if you need specific enums consider using typesafe enum pattern, see link: http://www.javacamp.org/designPattern/enum.html |
|||
|
|