我正在使用番石榴。 我得到一個「方法toStringHelper()未定義的類型對象錯誤」在日食。 我在沒有錯誤的時候突然出現這些錯誤。toStringHelper()未定義類型對象
@Override
public String toString()
{
return Objects
.toStringHelper(this)
.add("id", this.id)
.add("custid", this.custid)
.toString();
}
你可以顯示你的eclipse標記爲錯誤的代碼嗎? –
您確定已導入並使用'com.google.common.base.Objects',但不是**'java.util.Objects'? – Xaerxess
是的,我已經導入「import com.google.common.base.Objects;」 –