我正在使用番石榴。我在 Eclipse 中收到“方法 toStringHelper() 未定义类型对象错误”。当突然这些错误开始出现时,我正在毫无错误地工作。
@Override
public String toString()
{
return Objects
.toStringHelper(this)
.add("id", this.id)
.add("custid", this.custid)
.toString();
}