A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 泮和顺 中级黑马   /  2012-3-10 19:40  /  1651 人查看  /  2 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

System.out   是这样的public static final PrintStream out  既然是静态加final的 都可以说是不好改了吧  但是Systrm偏setOut(PrintStream out) 这样的方法,硬生生的可以吧输出流终端改掉了,纠结了

2 个回复

倒序浏览
System.out中out是一个静态常量,是System类中的field,所以无须new就可以直接使用,主要用来输出的,静态常量肯定是不能改变的了。而类System类中的setOut()方法,是用来重新分配“标准”的输出流的。调用此方法,首先如果有安全的管理器,用RuntimePermission("setIO") 权限调用它的checkPermission方法来查看是否可以再分配“标准”的输出流。


setOut
public static void setOut(PrintStream out)
Reassigns the "standard" output stream.
First, if there is a security manager, its checkPermission method is called with a RuntimePermission("setIO") permission to see if it's ok to reassign the "standard" output stream.


Parameters:
out - the new standard output stream

评分

参与人数 1技术分 +1 收起 理由
房宝彬 + 1

查看全部评分

回复 使用道具 举报
写的不错这个 但是还是不怎么懂 钻牛角了。。。
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马