标签:strong 控制台 标准输入 put new nbsp read system hello
System.in
System.in 是 InputStream 类的实例对象,该对象的创建是由本地(native)方法完成的。
public static final InputStream in
System.in字节输入流对应的IO设备为键盘。
System.in为InputStream类的实例,故包含方法 int read()与 int read(byte[])。
示例:
int a; byte[] b = new byte[12]; a = System.in.read(); System.out.println("a = " + a); System.in.read(b); System.out.println("b = " + new String(b));
System.out
System.in 是 PrintStream 类的实例对象。
public static final PrintStream out
System.out对应的IO设备为控制台。
System.out是一个PrintStream流。System.out一般会把写到其中的数据输出到控制台上。
示例:
PrintStream out = System.out;
out.println("Hello World");
java 标准输入输出System.in与System.out
标签:strong 控制台 标准输入 put new nbsp read system hello
原文地址:https://www.cnblogs.com/deltadeblog/p/9252383.html