I want that when a child class overrides a method in a parent class, the super.method() is called in that child method.
Is there any way to check this at compile time?
If not, how would I go about throwing a runtime exception when this happens?
|
|
There's no way to require this directly. What you can do, however, is something like:
This provides an internal interface-point that subclasses can use to add custom behavior to the public |
|||||||
|
|
unfortunately, there's no way to require it at compile time, and no way to detect it at runtime (unless there is some app specific logic or sequence of events that you could use to detect the method not being called). best thing to do is heavily document the method. if you really, really want to go down this path, you could use something like this pattern:
|
|||
|
|
|
There's not a way to check for this at compile time. (However, I've heard suggestions that you could do this at compile time with annotations, although I've never seen a specific annotation solution and I don't know how it would be done.) For a way to throw an exception at run time, see this thread. Perhaps you can refactor your code so that the base class has a |
|||
|
|
|
Well, I can presume that the initialization in the superclass method is used elsewhere. I would set a flag in the superclass method and check it later when the initialization is needed. More specifically, let's say setupPaint() is superclass method that needs always to be called. so then we can do:
Now if a subclass of C doesn't call the setupPaint() function, there's no way that the (private) flag will be set, and methods requiring the contractual call to the superclass setupPaint(), such as paint() will be able to check and throw that exception. As noted elsewhere, there is by the way no way of requiring such a contract in java. |
|||
|
|
|
How about if you make the call yourself? Instead of dictating implementation to a subclass (which you really can't do) just enforce it with the interface and implementation of your baseclass.
|
||||