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
|