1.main线程中先调用threadA.join() ,再调用threadB.join()实现A->B->main线程的执行顺序 调用threadA.join()时,main线程会挂起,等待threadA执行完毕返回后再执行,到执行threadB.join()时再挂起,待threadB执行完毕返回继续执行main 使用场景:线程B依赖线程A的计算结果的场景 package concurrency; public class JoinTest { public static void main(
一.defer和async 我们常用的script标签,有两个和性能.js文件下载执行顺序相关的属性:defer和async defer的含义[摘自https://developer.mozilla.org/En/HTML/Element/Script]——This Boolean attribute is set to indicate to a browser that the script is meant to be executed after the document has bee