Static Function Concurrency ASP.NET

后端 未结 7 1906
被撕碎了的回忆
被撕碎了的回忆 2021-02-09 18:59

If you have two threads invoking a static function at the same moment in time, is there a concurrency risk? And if that function uses a static member of the class, is there even

7条回答
  •  没有蜡笔的小新
    2021-02-09 19:45

    Static methods in OO are no difference from "just" functions in procedural programming. Unless you store some state inside static variable there is no risk at all.

提交回复
热议问题