如果多个线程同时访问同一个静态方法,后一个线程传递的参数值会覆盖前一个线程传递的参数值吗?代码示例如下:被访问的静态资源:public class C {public static void test(String[] value) throws InterruptedException{Thread.sleep(5000);System.out.println(Thread.currentThread().getId());
for(String v : value){
System.out.println(v);
}}}线程1:public class A {public static void main(String[] args) throws InterruptedException {C.test(new String[]{"A","B", "C"});}}线程2:public class B {public static void main(String[] args) throws InterruptedException {C.test(new String[]{"D","E", "F"});}}在线程1访问静态方法test并传递参数后,假设在执行中或执行之前,下一个线程2也访问了test方法并传递了新的参数,此时在线程1遍历参数时,会遍历到线程2传递的参数吗?
5 回答
湖上湖
TA贡献2003条经验 获得超2个赞
不会覆盖。是线程安全的。
多线程情况下出问题只有一种可能:存在成员变量,且多个线程同时对成员变量进行读写。
你这种不存在成员变量。你那参数只是局部的。所以没有问题。
如果存在成员变量但是不存在并发读写也没问题(比如,只初始化一次的成员变量,其它结程只读取不写入)
添加回答
举报
0/150
提交
取消