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.Sleep();
但从来没有看到“线程”声明。'Thread' 是指 C# 中的主线程吗?我见过在使用之前声明的其他线程对象,但不是这个。
这是System.Threading.Thread类的静态方法。它在当前线程上运行。
System.Threading.Thread
线程是静态密封类。
Thread.Sleep() 阻塞当前线程。
'Thread' 是否指 C# 中的主线程
是的,它是您正在处理的主线程,并且Thread.Sleep()是System.Threading.Thread类的静态方法。
Thread.Sleep()