响度均衡

导航

 

2022年5月23日

摘要: ① join() 指定等待时间 void join() 等待这个线程死亡。 void join(long millis) 等待这个线程死亡最多 millis毫秒。 void join(long millis, int nanos) 等待最多 millis毫秒加上 nanos纳秒这个线程死亡。 ② j 阅读全文
posted @ 2022-05-23 15:55 响度均衡 阅读(56) 评论(0) 推荐(0) 编辑
 
摘要: //find() 寻找符合 regexp 的子字符串,寻找到的可能有多个 public static void test1(){ Pattern compile = Pattern.compile("<.*?>"); Matcher matcher = compile.matcher("<h1123 阅读全文
posted @ 2022-05-23 10:19 响度均衡 阅读(36) 评论(0) 推荐(0) 编辑