Java - GetSelectedIndexes问题

发布于 2024-10-25 06:33:39 字数 273 浏览 3 评论 0原文

我的问题是我的编译器无法识别 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

爱本泡沫多脆弱 2024-11-01 06:33:39

您可能需要 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...

凉世弥音 2024-11-01 06:33:39

您需要 JList 的 getSelectedIndices,而不是 getSelectedIndexes。

You want JList's getSelectedIndices, not getSelectedIndexes.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文