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.
在 c# 规范的 3.10 中,以下是:
必须保留这些副作用顺序的关键执行点是对 volatile 字段(第 10.5.3 节)、锁定语句(第 8.12 节)以及线程创建和终止的引用。
问题是:线程创建意味着“new Thread();” 还是“th.start()”?
据我所知,我认为它至少包含“th.start()”。