摘要:
多个线程对服务器发送POST请求,每个线程使用不同的端口(已修正) 并统计总响应时间、成功请求数、平均响应时间 更新日志: socketPostRaw 中将注释掉的行改为红色行。若 new Socket 时不绑定发送端 ip 和 port 则为短连接,绑定为长连接,导致端口长时间不被释放,必须超时才 阅读全文
摘要:
方法1:synchronized class Odd implements Runnable { @Override public void run() { while(idx < len){ synchronized (lock){ if (idx < len && (num[idx] >> 1 阅读全文