为什么TableCloumn <s,t>取2个元素?</s,t>

时间:2014-02-13 08:28:35

标签: javafx

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);
}

为什么我无法做到这一点?

1 个答案:

答案 0 :(得分:0)

  • S是您的域对象
  • T是您想要的域对象的值 显示在该栏目中。

请关注这些问题的Javadoc:

http://docs.oracle.com/javafx/2/api/javafx/scene/control/TableView.html