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 的项目。这会导致 JList 中的元素为空。消除这种情况的最佳方法是什么?
如果您已经有部分填充的数组并且无法更改它,请使用 aVector填充数组中所有非空元素,然后将其分配给JList.
Vector
JList
否则,将您的对象存储在集合中而不是 an 中,并在您创建或分配对象时array调用其上的方法。toArrayJListJList#setListData
array
toArray
JList#setListData