I went through all the posts on reflection but couldn't find the answer to my question.
What were the problems in the programming world before .NET reflection came and how it solved those problems?
Please explain with an example.
|
I went through all the posts on reflection but couldn't find the answer to my question. What were the problems in the programming world before .NET reflection came and how it solved those problems? Please explain with an example.
| |||||||||||||||||||
feedback
|
|
It should be stated that .NET reflection isn't revolutionary - the concepts have been around in other framework. Reflection in .NET has 2 facets: Investigating type information Without some kind of reflection / introspection API, it becomes very hard to perform things like serialization. Rather than having this provided at runtime (by inspecting the properties/fields/etc), you often need code-generation instead, i.e. code that explicitly knows how to serialize each of your types. Tedious, and painful if you want to serialize something that doesn't have a twin. Likewise, there is nowhere to store additional metadata about properties etc, so you end up having lots of additional code, or external configuration files. Something as simple as being able to associate a friendly name with a property (via an attribute) is a huge win for UI code. Metaprogramming .NET reflection also provides a mechanism to create types (etc) at runtime, which is hugely powerful for some specific scenarios; the alternatives are:
| |||
|
feedback
|
|
I think to understand the need for reflection in .NET, we need to go back to before .NET. After all, modern languages like like Java and C# do not have a history BF (before reflection). C++ arguably has had the most influence on C# and Java. But C++ did not originally have reflection and we coded without it and we managed to get by. Occasionally we had void pointer and would use a cast to force it into whatever type we wanted. The problem here was that the cast could fail with terrible consequences:
Now there are plenty of arguments why you shouldn't have coded yourself into this problem in the first place. But the problem is not much different from .NET 1.1 with C# when we didn't have generics:
However, when the C# example fails it does so with a exception rather than a potential core dump. When reflection was added to C++ (known as Run Time Type Identification or RTTI), it was hotly debated. In Stroustrup's book The Design and Evolution of C++, he lists the following arguments against RTTI, in that some people:
But it did allow us to query the type of objects, or features of objects. For example (using C#)
Of course, with proper planning this example should never need to occur. So, real world situations where I've needed it include:
So, I would go as far as to argue that Reflection has not enabled the ability to do something that couldn't be done before. However, it does make some types of problems easier to code, clearer to reader, shorter to write, etc. Of course that's just my opinion, I could be wrong. | ||||
|
feedback
|
|
I once wanted to have unit tests in a text file that could be modified by a non-technical user in the format in C++:
But I couldn't find a way to read in a string and then have the code create an object instance of the type represented by the string without reflection which C++ doesn't support.
Another use might be to have a generic copy function that could copy the members of an class without knowing them in advance. | ||||
|
feedback
|
|
It helps a lot when you are using C# attributes like [Obsolete] or [Serializable] in your code. Frameworks like NUnit use reflection on classes and containing methods to understand which methods are tests, setup, teardown, etc. | ||||
|
feedback
|