when debugging java code, in the stack trace, I noticed that something in the following
ToyotaCar(AbstractCar).handle() line: 40
It looks like the class in the brace is the base class. Will eclipse always show the base class?
|
when debugging java code, in the stack trace, I noticed that something in the following
It looks like the class in the brace is the base class. Will eclipse always show the base class? |
||||
|
|
|
If you invoke a method of a base class, the stack line will show both the base class (where the method is defined) and the class of the object that invoked such method. I assume here that you did something like
where By itself, this notation for a stack line might seem excessive if you don't override base class methods. Consider, however, the case where you want to override the
inside |
||||
|
|