如果为假则执行语句

如果为假则执行语句

在运行(以运行或调试模式)项目时,出现ArrayIndexOutOfBounds错误,这很有意义。并不是说我检查索引是否> = 0,尽管它说索引为-1,但if内的代码仍然可以运行。

代码:

...
// Contact List
lstContacts = new JList();
lstContacts.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
lstContacts.setPreferredSize(new Dimension(200, 200));
lstContacts.setMinimumSize(new Dimension(50, 50));
_contactList = _dbi.GetContactList();
_selectedIndex = -1; // An int declared earlier
lstContacts.setListData(_contactList.toArray());
lstContacts.addListSelectionListener(new ListSelectionListener()
{
    public void valueChanged(ListSelectionEvent e)
    {

        System.out.println();
        System.out.println("lstContacts.getSelectedIndex: " + lstContacts.getSelectedIndex());
        System.out.println("!e.getValueIsAdjusting: " + (!e.getValueIsAdjusting()));
        System.out.println("getselectedindex > 0:   " + (lstContacts.getSelectedIndex() > 0));
        System.out.println("Both: " + (!e.getValueIsAdjusting() && (lstContacts.getSelectedIndex() > 0)));

        // Filter out mid-actions
        if(!e.getValueIsAdjusting() && (lstContacts.getSelectedIndex() > 0))
        {

            if(pnlDetail.isVisible())
            {
                saveCurrentContact();
            }
            else
            {
                pnlDetail.setVisible(true);
            }

            System.out.println("  Both: " + (!e.getValueIsAdjusting() && (lstContacts.getSelectedIndex() > 0)));
            _selectedIndex = lstContacts.getSelectedIndex();
            System.out.println("  _selectedIndex: " + _selectedIndex);
            System.out.println("  lstContacts.getSelectedIndex: " + lstContacts.getSelectedIndex());
            PersonalContact sc = (PersonalContact)_contactList.get(_selectedIndex); //crashes here
            showContact(sc);
        }
    }
});
...

首先,我在列表中插入了三个虚拟联系人。单击一个运行正常,但是单击另一个则会引发错误。在下面的错误中,我单击了第二个条目。

控制台输出:
...
lstContacts.getSelectedIndex: 2
!e.getValueIsAdjusting: true
getselectedindex > 0:   true
Both: true
Entry ID [2] modified.

lstContacts.getSelectedIndex: -1
!e.getValueIsAdjusting: true
getselectedindex > 0:   false
Both: false
  Both: false
  _selectedIndex: -1
  lstContacts.getSelectedIndex: -1
Exception in thread "AWT-EventQueue-0" java.lang.ArrayIndexOutOfBoundsException: -1
    at java.util.ArrayList.elementData(Unknown Source)
    at java.util.ArrayList.get(Unknown Source)
    at main.ContactPanel$2.valueChanged(ContactPanel.java:203)
    at javax.swing.JList.fireSelectionValueChanged(Unknown Source)
    at javax.swing.JList$ListSelectionHandler.valueChanged(Unknown Source)
        ... [continued]

看起来它可以正常运行,然后再次运行并崩溃。我想念什么(可能很明显)?感谢您的宝贵时间和提供的任何帮助。

最佳答案

就像您的帖子中的注释所表明的那样,很可能其他线程正在更新列表,并在您使用JList.getSelectedIndex()检查其值时取消选择所有内容。您尚未显示所有代码,但稍后可能会使用lstContacts进行操作,以清除列表中的所有选择。

由于您要响应特定事件,因此请不要检查列表中选择的值,在多线程环境中,列表中的值可能会从一个瞬间变为另一个瞬间。而是使用ListSelectionEvent.getFirstIndex())检查事件选择的值,该值对于该事件应该是恒定的。

您可能会发现Oracle的Concurrency In Swing教程很有帮助。

关于java - 如果为假则执行语句,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18341789/

10-08 22:32