摘要: 1. chromatic The chromatic wheel shows how all the colors relate. ( highly colored ) 2. coalesce The members coalesced into one team. (to come togethe 阅读全文
posted @ 2021-07-02 16:55 Jasper2003 阅读(53) 评论(0) 推荐(0) 编辑
摘要: 客户端 1 public static void main(String[] args) throws IOException { 2 3 4 5 // 创建客户端 6 7 SocketChannel sc = SocketChannel.open(); 8 9 10 11 // 指定要连接的服务器 阅读全文
posted @ 2021-07-02 13:56 Jasper2003 阅读(96) 评论(0) 推荐(0) 编辑
摘要: 1. 选择键 Channel 和 Selector的关系确定好后,并且一旦通道处于某种就绪状态,就可以被选择器查询到。 那么,怎么进行查询呢? 这个工作,使用选择器Selector的select() 方法完成。 select()方法:对感兴趣的通道操作,进行就绪状态的查询。 Selector可以不断 阅读全文
posted @ 2021-07-02 10:53 Jasper2003 阅读(312) 评论(0) 推荐(0) 编辑