码迷,mamicode.com
首页 > 编程语言 > 详细

Java基础-重写System.out.println方法

时间:2016-12-25 13:58:44      阅读:293      评论:0      收藏:0      [点我收藏+]

标签:java基础   odi   class   .com   ref   nts   ons   hook   flow   

PrintStream myStream = new PrintStream(System.out) {
    @Override
    public void println(String x) {
        super.println(System.currentTimeMillis() + ": " + x);
    }
};
System.setOut(myStream);
System.out.println("Hello World!");
-------------------------------------------------------------------------------
Output:
1420553422337: Hello World!

参考:http://stackoverflow.com/questions/27800326/hook-into-system-out-println-and-modify

Java基础-重写System.out.println方法

标签:java基础   odi   class   .com   ref   nts   ons   hook   flow   

原文地址:http://www.cnblogs.com/EasonJim/p/6219322.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!