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.
### Input Output
>-行对于内存的操作读写
> 
>- read() Input
>- write() output
### 一些面试基础题目


### BIO
>- blockIO阻塞式IO,线程阻塞
>- serverSocket.accept();等待请求
>- 
### nio
>-主要用块效率高, io主要用流效率低
>- 非阻塞面向缓冲,有选择器
>- 可以利用线程管理通道 select监听端口数据
### AIO 异步IO
>- 把事件交给操作系统
### Netty
>- 基于NIO的框架,多线程架构
### Reactor 监听请求=select+dispathch
>- 用来监听接收客户端请求
>- 连接客户端
>- acceptor获取连接
>- Handler 处理业务 可以在线程池多处理
>- 有多种模型单线程,多线程,多进程 multi-reactor