标签:
1. 标准输入输出流
System类中的两个成员变量:
public static final InputStream in :"标准"输入流。
public static final PrintStream out :"标准"输出流。
备注:
InputStream is = System.in;
PrintStream ps = System.out;
代码示例:
1 package cn.itcast_04; 2 3 import java.io.PrintStream; 4 5 /* 6 * 标准输入输出流 7 * System类中的两个成员变量: 8 * public static final InputStream in “标准”输入流。 9 * public static final PrintStream out “标准”输出流。 10 * 11 * InputStream is = System.in; 12 * PrintStream ps = System.out; 13 */ 14 public class SystemOutDemo { 15 public static void main(String[] args) { 16 // 有这里的讲解我们就知道了,这个输出语句其本质是IO流操作,把数据输出到控制台。 17 System.out.println("helloworld"); 18 19 // 获取标准输出流对象 20 PrintStream ps = System.out; 21 ps.println("helloworld"); 22 23 ps.println(); 24 // ps.print();//这个方法不存在 25 26 // System.out.println(); 27 // System.out.print(); 28 } 29 }
标签:
原文地址:http://www.cnblogs.com/hebao0514/p/4872146.html