use std::thread; use std::sync::mpsc; //一个通道可以有多个发送端,只能有一个接收端fn main() { let (tx, rx) = mpsc::channel(); //建立通道, ...
確定! 回上一頁