我正在尝试创建此方法,但由于某种原因它不起作用...
public static Interval multiply(Interval x, Interval y) {
int min = Math.min(x.lo * y.lo, x.hi * y.hi, x.hi * y.lo, x.hi * y.hi);
int max = Math.max(x.lo * y.lo, x.hi * y.hi, x.hi * y.lo, x.hi * y.hi);
return new Interval(min, max);
它与 Math.min/Math.max 有关,但我查了一下,所以我不确定我是如何使用不正确的??