Tagged Questions

29
votes
12answers
3k 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 …
29
votes
13answers
2k views

How costly is Reflection? Really.

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 …
20
votes
7answers
1k 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 …
16
votes
5answers
926 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. …
15
votes
7answers
5k views

C# reflection: 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 …
13
votes
2answers
247 views

Modifying final fields in Java

Let's start with a simple test case: import java.lang.reflect.Field; public class Test { private final int primitiveInt = 42; private final Integer wrappedInt = 42; private final String …
12
votes
20answers
899 views

Is using reflection a design smell?

I see a lot of C#, .net questions solved here using reflection. To me, a lot of them look like bending the rules at the cost of good design (OOP). Many of the solutions look unmaintenable and …
12
votes
7answers
639 views

How can I write a generic container class that implements a given interface in C#?

Context: .NET 3.5, VS2008. I'm not sure about the title of this question, so feel free to comment about the title, too :-) Here's the scenario: I have several classes, say Foo and Bar, all of them …
12
votes
6answers
803 views

How slow is Reflection (C#)

I recently created an interface layer to distinguish the DataAccessProvider from our Business logic layer. With this approach we can change our choice of DataAccessProvider whenever we want by …
12
votes
6answers
3k 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[]) {} ?
12
votes
5answers
1k 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 …
12
votes
8answers
3k 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 …
11
votes
5answers
798 views

Python decorator makes function forget that it belongs to a class

I am trying to write a decorator to do logging: def logger(myFunc): def new(*args, **keyargs): print 'Entering %s.%s' % (myFunc.im_class.__name__, myFunc.__name__) return …
11
votes
4answers
1k views

How to test whether method return type matches List<String>

What is the easiest way to test (using reflection), whether given method (i.e. java.lang.Method instance) has a return type, which can be safely casted to List<String>? Consider this snippet: …
10
votes
9answers
436 views

In 3 minutes, What is Reflection?

Many .Net interview question lists (including the good ones) contain the question: "What is Reflection?". I was recently asked to answer this in the context of a 5 question, technical test designed to …

1 2 3 4 5 93 next
15 30 50 per page