ja-6ren">
gpt4 book ai didi

JavaFX 编译警告 - "uses unchecked or unsafe operations"- 原始数据类型?

转载 作者:行者123 更新时间:2023-12-02 03:57:56 33 4
gpt4 key购买 nike

我正在学习 JavaFX,特别是尝试使用 TableColumn 和 TableView 类实现表格。我的程序编译没有错误,但在编译时我收到了一个不祥的警告:

C:\JavaFX_Sandbox>javac robotApp.java
Note: robotApp.java uses unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.

C:\JavaFX_Sandbox>

这让我很奇怪,以至于我没有勇气尝试实际运行我的程序。我在 StackOverflow 和其他一些网站上进行了一些挖掘,发现导致此警告的最可能原因是我正在使用原始数据类型。但如果是这样,我就找不到他们了。如果不是,我担心这条消息可能意味着什么。

为了尽快描述我的程序:我创建了一个 Nerd 机器人.java 类:

public class robot{

private String name;
private int intelligence;

public robot(String a, int b){
this.name = a;
this.intelligence = b;
}
}

没什么特别的。为了存储所有这些机器人,我创建了一个 robotsMgr.java 类,本质上是一个美化的 ArrayList 来保存它们:

import java.util.ArrayList;
import java.util.List;
import javafx.collections.*;

public class robotMgr{

private ArrayList<robot> robotList;
private ObservableList<robot> oRobotList;

robotMgr(){
robotList = new ArrayList<robot>();
robotList.add(new robot("R2-D2", 7));
robotList.add(new robot("Cylon", 3));
robotList.add(new robot("The Terminator", 5));
robotList.add(new robot("WALL-E", 6));
populateOList();
}
public void populateOList(){
for(int i=0; i<robotList.size(); i++)
oRobotList.add(robotList.get(i));
}

public List<robot> getRobotList(){
return robotList;
}
public ObservableList<robot> getORobotList(){
return oRobotList;
}
}

(我在 ArrayList 中进行了更多的数据操作,但是 ObservableList 是必要的,因为 TableColumn 类期望从 ObservableList 中获取表元素。)

现在主要事件:一个 JavaFX 程序,它获取上面的数据并将其显示在一个简单的两列表中:

import javafx.application.*;
import javafx.stage.*;
import javafx.scene.*;
import javafx.scene.layout.*;
import javafx.scene.control.*;
import javafx.scene.control.cell.*;
import javafx.event.*;
import javafx.geometry.*;
import javafx.collections.*;

public class robotApp extends Application{

public static void main(String[] args){
launch(args);
}

TableColumn<robot, String> colName;
TableColumn<robot, Integer> colIntelligenge;
TableView<robot> robotTable;

BorderPane borderPane;
Scene scene;
Stage stage;

@Override public void start(Stage primaryStage){

robotMgr myBots = new robotMgr();

colName = new TableColumn<robot, String>("Name");
colName.setMinWidth(100);
colName.setCellValueFactory(new PropertyValueFactory<robot, String>("Name"));
colIntelligenge = new TableColumn<robot, Integer>("Intelligence");
colIntelligenge.setMinWidth(100);
colIntelligenge.setCellValueFactory(new PropertyValueFactory<robot, Integer>("Intelligence"));

robotTable = new TableView<robot>();
robotTable.getColumns().addAll(colName, colIntelligenge);
robotTable.setItems(myBots.getORobotList());

borderPane = new BorderPane();
borderPane.setCenter(robotTable);
scene = new Scene(borderPane, 600, 600);
stage = primaryStage;
stage.setScene(scene);
stage.setTitle("Robot App");
stage.show();

}
}

我觉得一切都很好。除了我上面提到的警告消息之外,一切都编译得很好。奇怪的是,如果我注释掉“robotTable.getColumns().addAll(colName, colIntelligenge);”,该消息就会消失仅线路。

所以...我完全困惑了。如果错误消息警告我有关使用原始数据类型,我不知道它们在我的程序中的位置。如果错误消息警告其他内容,我不知道那可能是什么。另外:为什么 addAll() 方法会成为导致警告的行?我一生都无法弄清楚这一点。

问题是机器人的实例变量都是私有(private)的吗?如果是这样,它不会在编译时产生特定的语法错误吗?或者 ObservableList 是问题所在?了解 OL 是接口(interface),而不是数据结构...但我不明白这会如何让我陷入困境。

如果有人可以提供一些帮助或建议,我将非常感激。

非常感谢! -RAO

最佳答案

您的代码运行起来完全安全(它有错误,您在运行时会发现这些错误,但这些错误与您所要求的类型安全无关)。

基本上,问题在于 addAll()您调用的方法采用“varargs”参数,其类型是泛型类型。对于TableView<S> , TableView.getColumns()返回 ObservableList<TableColumn<S,?>>ObservableList<E> addAll()然后您调用的方法采用 vararg 参数:addAll(E... elements) 。所以你最终调用了一个带有签名 addAll(TableColumn<Robot, ?>... columns) 的方法.

Varargs 通过将其转换为数组来处理,因此您隐式创建 TableColumn<Robot, ?>[] 类型的数组当您调用addAll时方法。由于数组和参数化类型不能很好地协同工作,因此编译器无法确保该数组的类型安全。因此,它发出警告。参见,例如here此处举例说明了编译器为何无法确保类型安全。

addAll() 的作者方法可能应该对其进行编码,以确保类型安全并对其进行注释,以便避免此警告(如果可能的话:我需要比现在更多的时间来考虑它)。

要避免出现警告,您只需调用 add方法两次:

robotTable.getColumns().add(colName);
robotTable.getColumns().add(colIntelligenge);

或者,您可以创建 List表列并将其传递给(其他)addAll(...)采用集合而不是可变参数参数的方法:

robotTable.getColumns().addAll(Arrays.asList(colName, colIntelligence));

关于JavaFX 编译警告 - "uses unchecked or unsafe operations"- 原始数据类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36699262/

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