在下面的代码中,我将数据分配给最终对象。但没有得到编译错误。
class Name {
private String name;
public Name (String s) {
this.name = s;
}
public void setName(String s) {
this.name = s;
}
}
private void test (final Name n) {
n.setName("test");//here exception coming but not giving compile error
}