我正在自学 Java,并希望得到有关此问题的反馈:编写一个具有两种方法的 Java 接口,一种将两个双精度加在一起返回总和,另一种将两个双精度相乘返回乘积。使用 JavaDoc 注释。
我错过了什么吗?在接口的 JavaDoc 注释中包含 @return 是否合适?
/**
* This is an interface for basic math.
*/
public interface Math {
/**
* This method will be used to add two doubles.
* @param a a value to be added
* @param b the other value to be added
* @return the sum of the two doubles
*/
public double add(double a, double b);
/**
* This method will be used to multiply two doubles.
* @param a a value
* @param b the other value
* @return the product of the two doubles
*/
public double multiply(double a, double b);
}
侃侃尔雅
MM们
相关分类