我得到鑄造錯誤(不能從字符串站投),我怎麼能解決這個問題,因爲我需要你使用startStation作爲其他方法的參數:如何克服這個轉換異常?
Station startStation;
startStation = (Station)(view.getStartStation());
這裏是Station
類:
public class Station {
// The name of the station.
private String name;
public Station(String name) {
if (name == null) {
throw new NullPointerException(
"The name of a station may not be null");
}
this.name = name;
}
這裏是我的getStartStation()
方法:
public String getStartStation() {
return startStation.getText();
}
請向我們展示了'Station'類的定義。理想的'getStartStation()'方法也是如此。 –
請閱讀此鑄造規則http://stackoverflow.com/questions/2233902/java-rules-for-casting – LMK