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.
我正在开发一个系统,其中多个线程可以使操作入队,但只有线程会将这些操作出队以对其执行业务逻辑。
Queue在这种情况下使用常规 .net (而不是 a )有什么后果ConcurrentQueue?
Queue
ConcurrentQueue
是的。你的软件会崩溃,可怕的事情会发生。您正在从不同的线程读取和写入。使用并发队列。你为什么不呢?