Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个包含一堆字符串的 JList。我希望它表现得像一个 Set,这样它就只会拥有唯一的值。有没有办法在不检查那里不存在新字符串的情况下实现这一点?
看看文档:1.4.2 | 爪哇 6
您可以通过 JList#setModel(ListModel) 设置您自己的 ListModel,它可能由例如 HashSet 而不是默认使用的 Vector 支持。
另请参阅ListModel和AbstractListModel