使用下面class的实例在线程间共享有什么问题?
What is the problem with using an instance of the following class to share between threads?
有人问我使用以下 class 的实例在线程之间共享有什么问题。
有什么风险?可能的解决方案是什么?
public class States {
private String[] states = new String[] {
"UNK", "NEW", "RUNNING", "DONE"
};
public String[] getStates() {
return states;
}
}
此代码的问题在于,虽然数组在 java 中是不可变的,但是因为您公开了对数组的引用,所以没有什么可以阻止任何人用新数组重新分配整个数组。对于此用例,最好使用枚举 类。
有人问我使用以下 class 的实例在线程之间共享有什么问题。 有什么风险?可能的解决方案是什么?
public class States {
private String[] states = new String[] {
"UNK", "NEW", "RUNNING", "DONE"
};
public String[] getStates() {
return states;
}
}
此代码的问题在于,虽然数组在 java 中是不可变的,但是因为您公开了对数组的引用,所以没有什么可以阻止任何人用新数组重新分配整个数组。对于此用例,最好使用枚举 类。