Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在主线程退出后允许任务执行。是否可以?或者我应该为此目的明确使用 Thread 类?
您可以编写自己的任务调度程序来安排非线程池线程上的任务......但更简单的选择可能是启动一个前台线程,它只等待相关任务完成。
(很难给出代码示例,因为您没有展示任务是如何开始的等,但它应该相当容易。)