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.
.Net 框架Interlocked.Add()仅具有用于int和的方法long。但我需要Interlock.Add()类型double。我怎样才能做到这一点?
Interlocked.Add()
int
long
Interlock.Add()
double
这是不可能的,您可以在 stackoverflow 上的这个问题中阅读。它还提供了一篇关于它的文章:
为什么接受 Doubles 作为参数的 Interlocked.Add 没有重载?