摘要: java 提供的标准模型有 System.in, System.out, System.err。平日里我们经常用到他们3个,其中用的最多的就是System.out.println()等了,最近突然想到,他们是怎么实现的呢?下面是JDK中者三者的定义的源码: public final static InputStream in = nullInputStream(); public final static PrintStream out = nullPrintStream(); public final static PrintStream err = nullP... 阅读全文
posted @ 2013-03-28 23:33 chenfei0801 阅读(505) 评论(0) 推荐(0) 编辑