0
我在創建對象時遇到了這個簡單代碼的問題。我正在使用BlueJ。錯誤:找不到符號 - 變量
public class Car
{
private String brandName;
public Car(String brand)
{
this.brandName = brand;
}
/**
* @return the brand name of the car
*/
public String getBrandName()
{
return brandName;
}
}
它看起來對我來說很好 – 2014-10-27 19:40:35
是的。你能給我們一個錯誤的行號嗎? – 2014-10-27 19:41:57
它不顯示任何行號。它編譯。當我嘗試創建對象時出現此錯誤。它看起來像這樣:https://dl.dropboxusercontent.com/u/45630219/Untitled.png – skofield 2014-10-27 19:45:50