use std::thread; use crossbeam_channel::bounded; let (s1, r1) = bounded(0); ... 起一个线程先接受一个消息然后发出一个消息 thread::spawn(move ...
確定! 回上一頁