MultiSocketClient.java
上传用户:cctqzzy
上传日期:2022-03-14
资源大小:12198k
文件大小:0k
源码类别:

搜索引擎

开发平台:

Java

  1. package chapter10;
  2. import java.net.*;
  3. import java.io.*;
  4. public class MultiSocketClient {
  5. static final int MAX_THREADS=10;
  6. public static void main(String[] args)throws IOException,InterruptedException {
  7. InetAddress addr=InetAddress.getByName(null);
  8. while (true){
  9. if( SockClient.threadCount() == 0) 
  10. new SockClient(addr);
  11. Thread.currentThread().sleep(100);
  12. }
  13. }
  14. }