Java - GetSelectedIndexes问题
我的问题是我的编译器无法识别 getSelectedIndexes。我已经导入了所有 awt 和 swing 库,并且 PartyList 是一个已设置且有效的 Jlist,任何人都可以给我任何建议,谢谢
否则 if(e.getSource() == jButton9) // 如果按下播放按钮 {
int []selectedIndexes = PartyList.getSelectedIndexes();
drawApp(4);
}
My problem is my compiler isnt recognising getSelectedIndexes. I've got all the awt and swing libraries imported and PartyList is a Jlist thats been set up and works, can anyone give me any advice, thanks
else if(e.getSource() == jButton9) // if play button is pressed
{
int []selectedIndexes = PartyList.getSelectedIndexes();
drawApp(4);
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能需要 PartyList partyList = new PartyList();
getSelectedIndexes 是实例级方法。如果不实例化该类,则无法调用它......
You probably need PartyList partyList = new PartyList();
getSelectedIndexes is a instance level method. You can't call it without instantiating the class...
您需要 JList 的 getSelectedIndices,而不是 getSelectedIndexes。
You want JList's getSelectedIndices, not getSelectedIndexes.