gpt4 book ai didi

java - 如何克服这个强制转换异常?

转载 作者:行者123 更新时间:2023-12-01 08:02:54 25 4
gpt4 key购买 nike

我遇到了转换错误(无法从字符串转换到电台),我该如何克服这个问题,因为我需要您在其他方法中使用 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 对象即可:

Station startStation = new Station(view.getStartStation());

关于java - 如何克服这个强制转换异常?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23825213/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com