Reflection is the process by which a program can observe and modify its own structure and behavior at runtime.
326
votes
10answers
62k views
Open Source Alternatives to Reflector? [closed]
Just to ask if anyone knows of an open source alternative to RedGate's Reflector? I'm interested in checking out how a tool similar to Reflector actually works.
Note, if you know of a free but not ...
173
votes
8answers
70k views
Checking if a variable is defined in Ruby
How do you check whether a variable is defined in Ruby? Is there an "isset"-type method available?
167
votes
15answers
149k views
How do I get the path of the assembly the code is in?
Is there a way to get the path for the assembly in which the current code resides? I do not want the path of the calling assembly, just the one containing the code.
Basically my unit test needs to ...
159
votes
12answers
144k views
Java how to: Generic Array creation
Due to the implementation of Java Generics you can't have code like this. How can I implement this while maintaining type safety?
public class GenSet<E> {
private E a[];
public ...
155
votes
10answers
91k views
What is reflection, and why is it useful?
What is reflection, and why is it useful?
I'm particularly interested in Java, but I assume the principles are the same in any language!
147
votes
13answers
16k views
Why does C++ not have reflection?
This is a somewhat bizarre question. My objectives are to understand the language design decision and to identify the possibilities of reflection in C++.
Why C++ language committee did not go ...
143
votes
4answers
45k views
How to use reflection to call generic Method?
What's the best way to call a generic method when the type parameter isn't known at compile time, but instead is obtained dynamically at runtime?
Consider the following sample code - inside the ...
140
votes
7answers
66k views
Get a new object instance from a Type
One may not always know the Type of an object at compile-time, but may need to create an instance of the Type. How do you get a new object instance from a Type?
139
votes
10answers
38k views
Getting all types that implement an interface with C# 3.0
Using reflection, how can I get all types that implement an interface with C# 3.0/.NET 3.5 with the least code, and minimizing iterations?
This is what I want to re-write:
foreach (Type t in ...
125
votes
12answers
23k views
Programmatic equivalent of default(Type)
I'm using reflection to loop through a Type's properties and set certain types to their default. Now, I could do a switch on the type and set the default(Type) explicitly, but I'd rather do it in one ...
121
votes
10answers
162k views
How do I invoke a Java method when given the method name as a string?
If I have two variables:
Object obj;
String methodName = "getName";
Without knowing the class of obj, how can I call the method identified by methodName on it?
The method being called has no ...
121
votes
2answers
4k views
Why would finding a type's initializer throw a NullReferenceException?
This has got me stumped. I was trying to optimize some tests for Noda Time, where we have some type initializer checking. I thought I'd find out whether a type has a type initializer (static ...
104
votes
1answer
4k views
Why is Attributes.IsDefined() missing overloads?
Inspired by an SO question. The Attribute class has several overloads for the IsDefined() method. Covered are attributes applied to Assembly, Module, MemberInfo, ParameterInfo. The MemberInfo ...
103
votes
9answers
57k views
Check if a class is derived from a generic class
I have a generic class in my project with derived classes.
public class GenericClass <T> : GenericInterface<T>
{
......
}
public class Test : GenericClass <SomeType>
{
}
Is ...
102
votes
8answers
46k views
Can you find all classes in a package using reflection?
A beginner question about reflection, I suppose:
Is it possible to find all classes or interfaces in a given package? (Quickly looking at e.g. Package, it would seem like no.)
99
votes
6answers
79k views
Get property value from string using reflection in C#
I am trying implement the Data transformation using Reflection example in my code.
The GetSourceValue function has a switch comparing various types, but I want to remove these types and properties ...
94
votes
8answers
28k views
How can I reliably determine the type of a variable that is declared using var at design time?
I'm working on a completion (intellisense) facility for C# in emacs.
The idea is, if a user types a fragment, then asks for completion via a particular keystroke combination, the completion facility ...
84
votes
14answers
8k views
How costly is .NET reflection?
I constantly hear how bad reflection is to use. While I generally avoid reflection and rarely find situations where it is impossible to solve my problem without it, I was wondering...
For those ...
84
votes
9answers
17k views
Can you use reflection to find the name of the currently executing method?
Like the title says: Can reflection give you the name of the currently executing method.
I'm inclined to guess not, because of the Heisenberg problem. How do you call a method that will tell you the ...
82
votes
6answers
36k views
How do I use reflection to invoke a private method in C#?
There are a group of private methods in my class, and I need to call one dynamically based on an input value. Both the invoking code and the target methods are in the same instance. The code looks ...
81
votes
5answers
30k views
change private static final field using java reflection
I have a class with a private static final field, that unfortunately i need to change at run time.
using reflection i get this error: java.lang.IllegalAccessException: Can not set static final ...
79
votes
12answers
21k views
How can I find the method that called the current method?
When logging in C#, how can I learn the name of the method that called the current method? I know all about System.Reflection.MethodBase.GetCurrentMethod(), but I want to go one step beneath this in ...
79
votes
7answers
31k views
Getting attributes of Enum's value
I would like to know if it is possible to get attributes of the enum values and not of the enum itself? For example, suppose I have the following enum:
enum FunkyAttributesEnum
{
[Description("Name ...
74
votes
9answers
21k views
How to determine if a type implements a specific generic interface type
Assume the following type definitions:
public interface IFoo<T> : IBar<T> {}
public class Foo<T> : IFoo<T> {}
How do I find out whether the type Foo implements the generic ...
74
votes
8answers
39k views
Getting the name of the current executing method
Is there a way to get the name of the currently executing method in Java?
70
votes
9answers
30k views
Getting all types in a namespace via reflection
How do you get all the classes in a namespace through reflection in C#?
68
votes
8answers
33k views
Java array reflection: isArray vs. instanceof
Is there a preference or behavior difference between using:
if(obj.getClass().isArray()) {}
and
if(obj instanceof Object[]) {}
?
65
votes
25answers
39k views
How can I add reflection to a C++ application?
I'd like to be able to introspect a C++ class for its name, contents (i.e. members and their types) etc. I'm talking native C++ here, not managed C++, which has reflection. I realise C++ supplies some ...
64
votes
8answers
31k views
Setting a property by reflection with a string value
I'd like to set a property of an object through reflection, with a value of type string.
So, for instance, suppose I have a Ship class, with a property of Latitude, which is a double.
Here's what I'd ...
63
votes
11answers
60k views
Using Case/Switch and GetType to determine the object [duplicate]
Possible Duplicate:
C# - Is there a better alternative than this to ‘switch on type’?
If you want to switch on a type of object, what is the best way to do this?
Code snippet
private int ...
60
votes
8answers
37k views
Find a private field with Reflection?
Given this class
class Foo
{
// Want to find _bar with reflection
[SomeAttribute]
private string _bar;
public string BigBar
{
get { return this._bar; }
}
}
I want ...
60
votes
18answers
2k views
How could Reflection not lead to code smells?
I come from low level languages - C++ is the highest level I program in.
Recently I came across Reflection, and I just cannot fathom how it could be used without code smells.
The idea of inspecting ...
59
votes
6answers
21k views
How do I read a private field in Java?
I have a poorly designed class in a 3rd-party JAR and I need to access one of its private fields. For example,
class IWasDesignedPoorly {
private Hashtable stuffIWant;
}
IWasDesignedPoorly obj = ...
59
votes
11answers
25k views
How do I intercept a method call in C#?
For a given class I would like to have tracing functionality i.e. I would like to log every method call (method signature and actual parameter values) and every method exit (just the method ...
57
votes
10answers
16k views
How to tell if a Javascript function is defined
How do you tell if a function in Javascript is defined?
I want to do something like
function something_cool(text, callback){
alert(text);
if( callback != null ){ callback(); };
}
but ...
57
votes
4answers
40k views
54
votes
2answers
20k views
Objective-C class -> string like: [NSArray className] -> @“NSArray”
I am trying to get a string name of a class from the class object itself.
// For instance
[NSArray className]; // @"NSArray"
I have found object_getClassName(id obj) but that requires an instance ...
54
votes
1answer
28k views
Calling generic method with a type argument known only at execution time
Edit:
Of course my real code doesn't look exactly like this. I tried to write semi-pseudo code to make it more clear of whay I wanted to do.
Looks like it just messed things up instead.
So, what I ...
53
votes
5answers
2k views
Evil code confusion, how does it even compile?
I stumbled upon this code:
static void Main()
{
typeof(string).GetField("Empty").SetValue(null, "evil");//from DailyWTF
Console.WriteLine(String.Empty);//check
//how does it behave?
...
53
votes
3answers
8k views
Convert.ChangeType() fails on Nullable Types
I want to convert a string to an object property value, whose name I have as a string. I am trying to do this like so:
string modelProperty = "Some Property Name";
string value = "SomeValue";
var ...
52
votes
15answers
27k views
Java Reflection Performance
Does creating an object using reflection rather than calling the class constructor result in any significant performance differences?
52
votes
6answers
21k views
Objective C Introspection/Reflection
Is there a built in method, function, API, commonly accepted way, etc. to dump the contents of an instantiated object in Objective C, specifically in Apple's Cocoa/Cocoa-Touch environment?
I want to ...
49
votes
5answers
8k views
What is the “cost” of .NET reflection? [duplicate]
Possible Duplicate:
How costly is .NET reflection?
I am currently in a programming mentality that reflection is my best friend. I use it a lot for dynamic loading of content that allows ...
49
votes
5answers
5k views
Why is reflection called reflection instead of introspection?
What is the origin of the term reflection? It seems more like introspection. Why isn't it called that?
Introspection: A looking inward; specifically, the act or process of self-examination.
...
47
votes
3answers
20k views
Create objective-c class instance by name?
Is it possible to create an instance of a class by name? Something like:
NSString* className = @"Car";
id* p = [Magic createClassByName:className];
[p turnOnEngine];
I don't know if this is ...
47
votes
2answers
10k views
How does WCF deserialization instantiate objects without calling a constructor?
There is some magic going on with WCF deserialization. How does it instantiate an instance of the data contract type without calling its constructor?
For example, consider this data contract:
...
47
votes
13answers
37k views
How do I read all classes from a Java package in the classpath?
I need to read classes contained in a Java package. Those classes are in classpath. I need to do this task from a Java program directly. Do you know a simple way to do?
List<Class> classes = ...
45
votes
7answers
61k views
How to pass a function as a parameter in C#?
Is it possible to pass a function as a parameter in C#? I can do it using the Func or Action classes, but this forces me to declare the entire function signature at once. When I try to use Delegate, I ...
44
votes
3answers
20k views
Java Reflection: How to know if a Method is static?
I want to discover at run-time ONLY the static Methods of a class, how can I do this?
Or, how to differentiate between static and non-static methods.
44
votes
4answers
21k views
How to check whether an object has certain method/property?
Using dynamic pattern perhaps? You can call any method/property using the dynamic keyword, right? How to check whether the method exist before calling myDynamicObject.DoStuff(), for example?
