标签: c#
如果我有一个带有静态方法的静态类,如果多个线程正在调用它,那么方法中的局部变量是否安全?
static class MyClass { static int DoStuff(int n) { int x = n; // <--- Can this be modified by another thread? return x++; } }
答案 0 :(得分:59)