05 | 打印流

回想起第一天学习java的时候,我们学的一句话
System.out.prinln("hello world");

其实在System中,out是PrintStream的属性,也就是说out是流的一个属性

看看源码:public final static PrintStream out = null;

System.out.println("在控制台输出");

PrintStream ps = new PrintStream("h1.txt");
System.setOut(ps);
System.out.println("在指定文件中打印");
ps.close();

你可能感兴趣的:(05 | 打印流)