返回对存储在对象的一个​​字段中的可变对象值的引用会公开对象的内部表示

use*_*840 6 java mutable checkstyle

我在以下代码的代码上运行checkstyle时遇到此错误:

@Override
public String[] getDescriptions() {
    return DESCRIPTIONS;
}
Run Code Online (Sandbox Code Playgroud)

但是DESCRIPTIONS IS NOT可变.它被定义为:

private static final String[] DESCRIPTIONS = new String[NUM_COLUMNS];

static {
   // In a loop assign values to the array.
   for (int i = 0; i < NUM_COLUMNS; ++i) {
       DESCRIPTIONS[i] = "Some value";
   }
}
Run Code Online (Sandbox Code Playgroud)

这是完整的错误消息:

"Returning a reference to a mutable object value stored in one 
 of the object's fields exposes the internal representation of
 the object. If instances are accessed by untrusted code, and 
 unchecked changes to the mutable object would compromise security
 or other important properties, you will need to do something 
 different. Returning a new copy of the object is better approach
 in many situations."
Run Code Online (Sandbox Code Playgroud)

相关问题:链接

Mik*_*378 6

数组和一些集合在其内容仍然可变的意义上不是不可变的.

Java中的不变性仅涉及对象的引用赋值,而不是其深层内容.

试试这个:

@Override
public String[] getDescriptions() {
    return Arrays.copyOf(DESCRIPTIONS, DESCRIPTIONS.length);
}
Run Code Online (Sandbox Code Playgroud)

BTW,小心java命名约定.. : descriptions,不是DESCRIPTIONS

  • 我认为约定是正确的:DESCRIPTIONS是一个**静态final**String [],我认为它们的目的是使它成为常量 (2认同)