我正在使用set来定义某些操作的允许键。 Eclipse显示了这个警告:
Type safety: The expression of type List needs unchecked conversion
to conform to Collection<? extends Object>
谷歌搜索了一下,在略有不同的情况下发现相同的消息,但它可能是类似的问题。
有没有机会以其他方式摆脱这种警告
@SuppressWarnings("unchecked")
使用
是个好主意@SuppressWarnings("unchecked")
在这种情况下?
这是我的代码:
public static final String KEY_A = "A_VALUE";
public static final String KEY_B = "B_VALUE";
public static final Set<?> allowedKeys = new HashSet<Object>(Arrays.asList(new String[] {KEY_A, KEY_B}));
答案 0 :(得分:3)
只有在您必须使其与现有代码一起使用时,才应使用Set<?>
或Set<Object>
。否则,尝试改为使用特定类型。
如果您确定该集仅包含String
元素,则Set<String>
是最佳选择。
答案 1 :(得分:2)
import jave.util.Arrays;
正确:
Set<?>
因此代码可以是Set<String>
和$query = "INSERT INTO CDBusers_activity (order_ID, activity_text_desc) VALUES (?, 'Price edited from ? to ?')";
$stmt = mysqli_prepare($DB_conn, $query);
mysqli_bind_param($stmt, "sss", $orderID, $product_editPrice_was, $product_editPrice_now);
mysqli_stmt_execute($stmt);
两种版本。 Eclipse只是自动导入坏类。
答案 2 :(得分:0)
尝试使用源代码了解问题并删除类型未经检查的转换警告
private static Vector<Vector<String>> tableVectorData;
private static Vector<String> rowData = new Vector<String>();
用于添加元素 -
rowData.clear();
rowData.addElement((strings[0])[0][0]);
rowData.addElement((strings[0])[1][0]);
tableVectorData.addElement(rowData);
用于检索元素 -
model = (DefaultTableModel) table.getModel();
rowCount = tableVectorData.size();
int i = 0;
while(i < rowCount) {
Vector<String> row = tableVectorData.get(i++);//here the type check warning will occur
model.setRowCount(model.getRowCount()+1);
System.out.println(row);
model.setValueAt(row.get(0), model.getRowCount()-1, 0);
model.setValueAt(row.get(1), model.getRowCount()-1, 1);
}
或使用Iterator<Vector<String>>
-
Iterator<Vector<String>> rows = tableVectorData.iterator();//here the type check warning will occur
boolean flag = false;
checkValue:
while(rows.hasNext()) {
Vector<String> vect = rows.next();
if(vect.contains(value)) {
flag = true;
break checkValue;
}
}
希望这些能为您提供处理这些表达式检查警告的方法,谢谢。