Reflection is the process by which a program can observe and modify its own structure and behavior at runtime.

learn more… | top users | synonyms

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 ...
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 ...
39
votes
16answers
33k views

How can I read the properties of a C# class dynamically?

I can do an eval("something()"); to execute the code dynamically in JavaScript. Is there a way for me to do the same thing in C#? What I am exactly trying to do is that I have an integer variable ...
120
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 ...
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.)
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!
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 ...
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 ...
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
20k 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 ...
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 ...
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 ...
29
votes
6answers
18k views

Getting the size of a field in bytes with C#

I'm having a class which I want to inspect it's fields, and report eventually how much bytes does each field take. I assume all fields are of types as Int32, byte etc. How can I find out easily how ...
38
votes
10answers
30k views

Get generic type of class at runtime

How can i achieve this? public class GenericClass<T> { public Type getMyType() { //How do I return the type of T? } } Everything I have tried so far always returns type ...
21
votes
9answers
20k views

How can I evaluate a C# expression dynamically?

I would like to do the equivalent of: object result = Eval("1 + 3"); string now = Eval("System.DateTime.Now().ToString()") as string Following Biri s link, I got this snippet (modified to remove ...
40
votes
5answers
30k views

.Net - Reflection set object property

Is there a way in .Net c# 3.5 I can use reflection to set a object property ? Ex : MyObject obj = new MyObject(); obj.Name = "MyName"; I want to set obj.Name with reflection. Something like : ...
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 ...
38
votes
6answers
12k views

Can I change a private readonly field in C# using reflection?

I am wondering, since a lot of things can be done using reflection, can I change a private readonly field after the constructor completed its execution? (note: just curiosity) public class Foo { ...
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 ...
18
votes
3answers
7k views

How do I programmatically compile and instantiate a Java class?

I have the class name stored in a property file. I know that the classes store will implement IDynamicLoad. How do I instantiate the class dynamically? Right now I have Properties foo = new ...
20
votes
5answers
40k views

C# - Correct Way to Load Assembly, Find Class and Call Run() Method

Sample console program. class Program { static void Main(string[] args) { // ... code to build dll ... not written yet ... Assembly assembly = ...
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 ...
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 ...
27
votes
7answers
44k views

Java Reflection: How to get the name of a variable?

Using Java Reflection, is it possible to get the name of a local variable? For example, if I have this: Foo b = new Foo(); Foo a = new Foo(); Foo r = new Foo(); is it possible to implement a ...
44
votes
10answers
36k views

At runtime, find all classes in a Java application that extend a base class

I want to do something like this: List<Animal> animals = new ArrayList<Animal>(); for( Class c: list_of_all_classes_available_to_my_app() ) if (c is Anamal) animals.add( new c() ...
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?
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 ...
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 ...
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 ...
39
votes
3answers
4k views

How to limit setAccessible to only “legitimate” uses?

The more I learned about the power of java.lang.reflect.AccessibleObject.setAccessible, the more astonished I am at what it can do. This is adapted from my answer to the question (Using reflection to ...
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 ...
17
votes
9answers
15k views

get type of a generic parameter in java with reflection

Is it possible to get the type of a generic parameter? An example: public final class Voodoo { public static void chill(List<?> aListWithTypeSpiderMan) { // Here I'd like to get ...
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 ...
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?
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: ...
17
votes
3answers
11k views

How to get the PropertyInfo of a specific property?

I want to get the PropertyInfo for a specific property. I could use: foreach(PropertyInfo p in typeof(MyObject).GetProperties()) { if ( p.Name == "MyProperty") { return p } } But there must be ...
36
votes
4answers
47k views

How to dynamically create generic C# object using reflection?

In C# I have the following object: public class Item { } public class Task<T> { } public class TaskA<T> : Task<T> { } public class TaskB<T> : Task<T> { } I want to ...
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#?
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 ...
10
votes
5answers
4k views

Getting Argument Names In Ruby Reflection

I would like to do some fairly heavy-duty reflection in the Ruby programming language. I would like to create a function which would return the names of the arguments of various calling functions ...
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 = ...
33
votes
4answers
23k views

C# generic list <T> how to get the type of T? [duplicate]

I’m working on a reflection project, and now I’m stuck. If I have an object of “myclass” that can hold a List does anyone know how to get the type as in the code below if the property myclass.SomList ...
27
votes
7answers
18k views

Change Attribute's parameter at runtime

I am not sure whether is it possible to change attribute's parameter during runtime? For example, inside an assembly I have the following class public class UserInfo { [Category("change me!")] ...
9
votes
5answers
16k views

ClassCastException when casting to the same class

I have 2 different java projects, one has 2 classes dynamicbeans.DynamicBean2 dynamic.Validator On the other project, I load both of these classes dynamically and store them on an Object class ...
4
votes
4answers
3k views

Is it possible in Java to access private fields via reflection

Is it possible in Java to access private field str via reflection? For example to get value of this field. class Test { private String str; public void setStr(String value) { str = ...
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 ...
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 ...
22
votes
11answers
63k views

How do I find out what type each object is in a ArrayList<Object>?

I have a ArrayList made up of different elements imported from a db, made up of strings, numbers, doubles and ints. Is there a way to use a reflection type technique to find out what each type of data ...
15
votes
5answers
18k views

C# Using Reflection to copy base class properties

I would like to update all properties from MyObject to another using Reflection. The problem I am coming into is that the particular object is inherited from a base class and those base class property ...
34
votes
5answers
9k views

Reflection to Identify Extension Methods

In C# is there a technique using reflection to determine if a method has been added to a class as an extension method? Given an extension method such as the one shown below is it possible to ...

1 2 3 4 5 30