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.
我想知道您是否可以调试单个方法调用
假设有一个名为 howMany(char c,String str) 的方法。我想用 'c',"Hello world" 调用它并调试它,而不必遍历之前的所有代码,直到我到达它
谢谢
您可以尝试使用 Junit 测试。这将允许您调用单个方法。
如何在eclipse中轻松创建单元测试