From 3bb05043701372775b70c66cab8050bb6ceede61 Mon Sep 17 00:00:00 2001 From: Yimint <1158890187@qq.com> Date: Tue, 25 Jun 2024 08:19:41 +0800 Subject: [PATCH] =?UTF-8?q?Update=20Selector=E3=80=81SelectionKey=E5=8F=8A?= =?UTF-8?q?Channel=E7=BB=84=E4=BB=B6.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit wrongly written characters --- .../IOTechnologyBase/Selector、SelectionKey及Channel组件.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Netty/IOTechnologyBase/Selector、SelectionKey及Channel组件.md b/docs/Netty/IOTechnologyBase/Selector、SelectionKey及Channel组件.md index 2e07272..796ecab 100644 --- a/docs/Netty/IOTechnologyBase/Selector、SelectionKey及Channel组件.md +++ b/docs/Netty/IOTechnologyBase/Selector、SelectionKey及Channel组件.md @@ -6,7 +6,7 @@ Selector、SelectionKey 和 Channel 这三个组件构成了 Java nio 包的核 ### Selector -其实,不管是 Selector 还是 SelectionKey 的源码,其具体实现类都是依赖于底层操作系统的,这里我们只看一下抽象类 Selector 的源码,日后有事件,再找一些具体的实现类深入分析一下。 +其实,不管是 Selector 还是 SelectionKey 的源码,其具体实现类都是依赖于底层操作系统的,这里我们只看一下抽象类 Selector 的源码,日后有时间,再找一些具体的实现类深入分析一下。 ```java public abstract class Selector implements Closeable {