JavaIO流_标准输入输出流
虽然使用方法我们很熟悉了,但是我们跟应该了解他们的原理
System.in
- 是System类的public final static InputStream in = null; 是个类中的静态变量
- System.in 的编译类型 InputStream
- System.in 的运行类型 BufferedInputStream(父类)
标准输入:键盘
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
System.out
- 是System类的public final static PrintStream out = null; 是个类中的静态变量
- System.in 的编译类型 PrintStream
- System.in 的运行类型 PrintStream
表示标准输出: 显示器
System.out.println("text");
转化流:将字符流转化为字节流
//基本用不到把,以后有机会回头看