我怎样才能在 JList 中只允许唯一的字符串?
我有一个包含一堆字符串的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看一下文档: 1.4.2< /a> | Java 6
您可以通过设置自己的 ListModel JList#setModel(ListModel) 可能由例如 HashSet 支持,而不是默认使用的 Vector。
另请参阅 ListModel 和 AbstractListModel
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