If I have a class:
class A {
public A() { }
}
and another
class B extends A {
public B() { }
}
is there any way to get B.B() not to call A.A()?
|
If I have a class:
and another
is there any way to get |
||||
|
There is absolutely no way to do this in Java; it would break the language specification. JLS 12 Execution / 12.5 Creation of New Class Instances
|
||||
|
|
|
If you don't want to call the superclass constructor, there is something else wrong with your object model. |
|||
|
|
|
The closest you can achieve to the desired behaviour is to delegate initialisation normally performed in the constructor to a template method, which you then override in your subclass implementation. For example:
However, as other people have noted this can typically indicate a problem with your design and I typically prefer the composition approach in this scenario; for example in the above code you could define the constructor to accept a |
|||||||
|
|
No and if you could, your derived object wouldn't really be the object it's deriving from now would it? The is-a principle would be violated. So if you really need it, then polymorphism isn't what you're after. |
|||
|
|
|
Every superclass needs to be constructed and there is no other way then calling a constructor. |
|||
|
|
|
I think the only way to do it is messing up with the byte-code. |
|||
|
|
|
Nope - you cannot do it and why would you want to do it anyway? That would mess up your object model. Anyways - i believe if you still want to do it and then you would have to manipulate the generated byte code.... there are a couple of libraries available that make it easy to instrument the byte code. Strongly suggest against doing it... |
|||
|
|
|
Every object in java is a subclass of Object (object with a capital 'O'). when you create an object of a subclass the super class constructor is invoked. Even if your class is not inhereting anyother class, implicitly it is inheriting Object, so the Object constructor has to be called. So super() is invoked for this purpose. |
|||
|
|
|
Assuming you mean
then sure you can
Not very useful. The interface [not Java keyword] to class |
|||
|
|
a) in each class of your hierarchy, include a constructor with a unique signature that calls the superclass's constructor with its arguments. For example, declare a class "Noop" and a constructor that takes that as an argument:
If you run this you will get the output
So, effectively you have created a class3 constructor that only calls constructors that don't do anything. |
|||
|
|
|
Thank you so much. All the suggestions are quite helpful. Unfortunately I am trying to superclass an existing package. I ended up side-stepping the problem by writing my own class (which is almost exactly the same as that provided by the package): http://stackoverflow.com/questions/2962491/any-way-to-turn-off-quips-in-ooweb Thank you! Misha |
|||
|
class B extends A {? BTW: Those aren't good class names - they look like generic parameters. – Tom Hawtin - tackline Jun 3 '10 at 16:29