大家好,大家可以解释为什么此代码的最后一行是合法的:

public class HashCodeTest {
    private String value = null;

    HashCodeTest(String value) {
    this.value = value;
    }

    public static void main(String[] args) {

    Map<HashCodeTest, String> aMap = new HashMap<HashCodeTest, String>();
    aMap.put(new HashCodeTest("test"), "test");
    aMap.put(new HashCodeTest("test"), "test");
    System.out.println(aMap.size());
    }

    @Override
    public int hashCode() {
    int result = 17;
    return 31 * result + value.hashCode();
    }

    public boolean equals(HashCodeTest test) {
    if (this == test) {
        return true;
    }
    if (!(test instanceof HashCodeTest)) {
        return false;
    }
    return test.value.equals(value);
    }
}


在最后一行,可以访问测试类的专用字段,但这是非法的。

谢谢,
格言

最佳答案

此类的所有实例均可访问私有字段。

10-08 09:01