JavaDoc说:
Type Parameters:
S - The type of the TableView generic type (i.e. S == TableView<S>)
T - The type of the content in all cells in this TableColumn.
“泛型类型”在这种情况下意味着什么?如果内容是String,泛型类型也可以是字符串,不是吗?
我正在尝试使用String编译以下代码:
TableColumn col = new TableColumn<?, String>();
public void append(String str) {
col.add(str);
}
为什么我无法做到这一点?
答案 0 :(得分:0)
请关注这些问题的Javadoc:
http://docs.oracle.com/javafx/2/api/javafx/scene/control/TableView.html