我使用的是Bonded JComboBox。我想知道的是如何检查JComboBox中是否包含任何项目。
谢谢。
答案 0 :(得分:3)
要测试JComboxBox
引用是否为null
,您可以使用null
运算符将其与==
进行比较。要测试组合框是否包含任何项目,可以使用实例方法getItemCount
,该方法返回它包含的项目数。
JComboxBox box = ...
boolean boxIsNull = (box == null); // answers the title of the question
boolean boxHasItems = (box.getItemCount() > 0);