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 调试器,是否可以在将某些内容打印到标准错误输出(例如System.err.println("error"))时中断?我需要这个,因为我有一个打印错误的程序,我想知道它们在代码中的打印位置。
System.err.println("error")
您可以在程序一开始就将自写的流类设置为错误流,并轻松地将断点放入该类中。
看看这个实现,它甚至可以为您节省断点,因为它会在出现某些输出时自动打印出代码位置。