I use jdb
for my Java development. For my application I have two classes: WordUniverseTest
and WordUniverse
, and the main method is contained in WordUniverseTest
. When I execute WordUniverseTest
inside of jdb
, I construct a WordUniverse
object called obj
inside of the main
method.
But I do not know how to have jdb
leave the WordUniverseTest
class and step inside WordUniverse
while obj
is being constructed. How do I do this?