例如,我有一个重定向的应用程序System.out
;
System.setOut(new PrintStream(System.out){
@Override
public void print(String string)
{
//TODO: find out who sent the print before processing string
}
});
我希望能够确定哪个类将打印调用发送到标准输出?我认为这是不可能的,但除非SO
这样说,否则不能完全得出结论。