我知道如何在eclipse中调试,但我想知道一种从方法中查找执行流的有效方法.
E g:
class A
{
method S()
{}
method S1()
{
B.SS()
}
method S2()
{
A.S1()
}
}
class B
{
method SS()
{
A.S()
}
method SS1()
{
B.SS2()
}
method SS2()
{
A.S2()
}
}
Run Code Online (Sandbox Code Playgroud)
鉴于这两个类,我怎么可以跟踪的方法流程从A.S2()到A.S()其他比调试?