同步异步同步GlobalScope.launch { one() two() println("finish")} 异步GlobalScope.launch { async { one() } async { two() } println("finish")}