无法解析符号变量getSelectedIndex

时间:2015-09-29 17:11:29

标签: java oop cannot-find-symbol

我在尝试复制和粘贴代码时遇到了麻烦,它说了一些关于未格式化的内容?我不知道它是我的第一次,但这里是麻烦的代码,我将链接一个pastebin,所以你也可以看到

整个代码:http://pastebin.com/p6RQiSLz

有问题的代码:

    //City (JList with txtfield)

    pane.add(lblCity);
    lblCity.setForeground(Color.BLACK);
    lblCity.setBounds(5,260,80,25);

    pane.add(list);
    list.setSelectedIndex(0);
    list.setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION);
    list.setBackground(Color.BLACK);
    list.setForeground(Color.WHITE);
    list.setBounds(90,260,150,100);
    list.setEnabled(false);
    pane.add(txtCity);
    txtCity.setBounds(90,380,150,25);

//================================TROUBLED BLOCK OF CODE============================================

    list.addListSelectionListener(new ListSelectionListener(){
        public void valueChanged(ListSelectionEvent er){
            txtCity.setText(listCity[listCity.getSelectedIndex]);
        }
    });

1 个答案:

答案 0 :(得分:0)

listCity是一个数组,数组没有getSelectedIndex属性,甚至没有数组的“选定元素”的概念。您可能希望从ListCity制作在JList上选择的项目,因此请尝试list.getSelectedIndex()而不是listCity.getSelectedIndex。至少应该编译。