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