Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在eclipse中调试期间如何获取函数的调用堆栈。调试视图已经显示了一个调用堆栈,但这还不够详细。我想知道调用是从哪里传到我现在正在查看的函数的。
谢谢并恭祝安康
只看调试视图:
在上面的示例中,调试器在方法的第 45 行停止FileSplit.writeBlock()。
FileSplit.writeBlock()
该方法由方法调用FileSplit.splitFile()(在第 24 行暂停)。
FileSplit.splitFile()
并且这个splitFile()方法被调用FileSplit.main()(在第 10 行暂停)。
splitFile()
FileSplit.main()
单击这些节点中的任何一个都可以查看调用方法的代码,并可以检查该方法中涉及的所有变量的值。