为equals,compareTo等广为人知的方法编写注释是否是一种好习惯?
考虑下面的代码。
/**
* This method compares the equality of the current object
with the object of same type
*/
@Override
public boolean equals(Object obj) {
//code for equals
}
我的公司非常想输入上述注释。是否需要上述Javadoc注释?equals方法之类的方法(compare,compareTo)等不是很明显并且很好理解吗?
您有什么建议?