我的问题是我应该评论如下:
/**
* Getter for {@link #auto_key}
* @return {@link #auto_key}
*/
public String getAuto_key() {
return auto_key;
}
/**
* Setter for {@link #auto_key}
* @param auto_key the {@link #auto_key} to set
*/
public void setAuto_key(String auto_key) {
this.auto_key = auto_key;
}
基本上我想问,在 getter 和 setter 方法的评论中使用 {@link} 是否正确?还是我应该使用普通评论而不使用 {@link} ?这种方式是否是java标准?