如何在后面的方法“public static void main(String [] args)”中调用使用“public boolean equals方法”创建的true或false值?
public Car(String color, double insurance)
{
this.color = color;
this.insurance = insurance;
}
public boolean equals(Car other)
{
if (this.color.equals(other.color) && this.insurance.equals(other.insurance))
{
return true;
}
else
{
return false;
}
}
我收到错误:无法在基本类型double
上调用equals(double)答案 0 :(得分:0)
您需要在此处调用方法:
stringi::stri_pad_left(dat$v2, nchar(max(dat$v2)), pad = " ")