我怎样才能在 JList 中只允许唯一的字符串?

发布于 2024-07-08 15:41:06 字数 92 浏览 11 评论 0原文

我有一个包含一堆字符串的 JList 。 我希望它像一个 Set 一样工作,这样它就只保存唯一的值。 有没有什么方法可以实现这一点,而不检查那里是否已经存在新字符串?

I have a JList that holds a bunch of strings . I would like it to act like a Set , so that it will only hold unique values . Is there any way to achieve this without checking that a new string doesn't already exist there ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

成熟稳重的好男人 2024-07-15 15:41:06

看一下文档: 1.4.2< /a> | Java 6

您可以通过设置自己的 ListModel JList#setModel(ListModel) 可能由例如 HashSet 支持,而不是默认使用的 Vector。

另请参阅 ListModelAbstractListModel

take a look at the docs: 1.4.2 | Java 6

You can set your own ListModel via JList#setModel(ListModel) which might be backed by e.g. a HashSet instead of the Vector which is used by default.

See also ListModel and AbstractListModel

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