Tagged Questions

4
votes
4answers
419 views

Why can't the super constructor be invoked from an enum constructor?

public enum A { A(1); private A(int i){ } private A(){ super(); // compile - error // Cannot invoke super constructor from enum constructor A() } } ...
4
votes
2answers
169 views

List all concrete or abstract classes of object

Is it possible in C#, via reflection or some other method, to return a list all superclasses (concrete and abstract, mostly interested in concrete classes) of an object. For example passing in a ...
3
votes
4answers
2k views

How to call a superclass method using Java reflection

I have two classes. public class A { public Object method() {...} } public class B extends A { @Override public Object method() {...} } I have an instance of B. How do I call ...
2
votes
4answers
985 views

Getting the superclass(es) of a Python class

class p1(object): pass class p2(p1): pass So p2 is the subclass of p1. Is there a way to find out programmatically that p1 is [one of] the superclass[es] of p2 ?
2
votes
4answers
796 views

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

like in java I have: Class.getSuperClass().getDeclaredFields() how I can know and set private field from a superclass? I know this is strongly not recommended, but I am testing my application and ...
2
votes
3answers
752 views

.NET / C# - Reflection Help - Classes in an Assembly

What is the best way to loop through an assembly, and for each class in the assembly list out it's "SuperClass"?
1
vote
2answers
1k views

Reflection: cast an object to subclass without use instanceof

I have this simple interface/class: public abstract class Message {} public class Message1 extends Message {} public class Message2 extends Message {} And an utility class: public class Utility ...
0
votes
1answer
212 views

Android Class.getGenericSuperclass returns java.lang.Object

I am trying to read generic info from a class. Here is what I am doing: first of all I have a class EntityHelper. Somewhere inside it I want to see what is actually that T. I know this can be done ...
0
votes
1answer
98 views

How to programmatically find list of classes that have inherited a particular class in Java

I have a class called MyClass. Is it possible to programmatically find a list of classes that have inherited MyClass? I know we can use reflection to discover all the superclasses of a given class, ...