Skip to content

Commit

Permalink
fix: update Selector、SelectionKey及Channel组件 (#163)
Browse files Browse the repository at this point in the history
  • Loading branch information
YIminta authored Jun 25, 2024
1 parent 9554849 commit 6080dd2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Selector、SelectionKey 和 Channel 这三个组件构成了 Java nio 包的核

### Selector

其实,不管是 Selector 还是 SelectionKey 的源码,其具体实现类都是依赖于底层操作系统的,这里我们只看一下抽象类 Selector 的源码,日后有事件,再找一些具体的实现类深入分析一下。
其实,不管是 Selector 还是 SelectionKey 的源码,其具体实现类都是依赖于底层操作系统的,这里我们只看一下抽象类 Selector 的源码,日后有时间,再找一些具体的实现类深入分析一下。

```java
public abstract class Selector implements Closeable {
Expand Down

0 comments on commit 6080dd2

Please sign in to comment.