在 Pro JavaFX 2.0 书的“牛铃”示例中,单选模型声明如下:
public SingleSelectionModel genreSelectionModel;
然后稍后在没有构造函数的情况下使用实例。
public void addListenerToGenreSelectionModel {
genreSelectionModel.selectedIndexProperty().addListener(...); };
我的问题是new
for在哪里SingleSelectionModel
?正如我所看到的,变量只是被声明但对象没有被创建,就像前面例子中的 IntegerProperties 一样。