摘要:
① join() 指定等待时间 void join() 等待这个线程死亡。 void join(long millis) 等待这个线程死亡最多 millis毫秒。 void join(long millis, int nanos) 等待最多 millis毫秒加上 nanos纳秒这个线程死亡。 ② j 阅读全文
摘要:
//find() 寻找符合 regexp 的子字符串,寻找到的可能有多个 public static void test1(){ Pattern compile = Pattern.compile("<.*?>"); Matcher matcher = compile.matcher("<h1123 阅读全文