我被困在以下问题上:
研究以下 Java 类头和代码片段:
class ExamScript implements Comparable<ExamScript> { private String studentName; private int mark; ...rest of class... /** * Compares this object with the specified object for e *@param e the object to be compared *@return -1 if object is less than the specified object *@return 0 if object is equal to the specfied object **/ public int compareTo(ExamScript e) { if (mark < e.mark) return - 1; if (mark == e.mark) return 0; return 1; } }
为该
compareTo
方法提供合适的文档。特别说明从该方法返回的值的含义。
compareTo
根据您的规范编写该方法的代码。
我已经记录并编写了如上所示的代码。任何人都可以为我确认我是否可以稍微改进我的文档/编码,或者这样可以吗?