You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

410 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

IO在计算机中表示输入和输出java对IO进行抽象后构建了流分为输入、输出流。根据数据处理方式又分为字节流和字符流。

一、字节流

字节流的顶级接口为InputStream、OutputStream

1.1 InputStream 字节输入流

1.2 OutputStream 字节输出流

二、字符流

字符流的顶级接口为Reader、Writer

三、流中使用的设计模式