我有课点:
public class Point
{
private double _x;
private double _y;
}
我也有getX()
,getY()
方法。我需要定义2个方法:
1. public boolean isAbove(Point other)
2. public boolean isUnder(Point other)
所以这就是我想出的:
public boolean isAbove(Point other)
{
if (this._y <= other._y)
{
return false;
}
else
{
return true;
}
}
public boolean isUnder(Point other)
{
}
我已经尝试了几件事isUnder
并得到了不同的结果。编写这两种方法的正确方法是什么?
** 重要的 **
我必须使用isAbove()
方法isUnder()
!