拖动combobox控件创建了一个下拉菜单。
然后想在源码中通过对一个组件设置监听来调combobox里的值,发现无法调用(调其他组件均可实现调用)
拖combobox组件设置属性后,系统自动生成的代码如下
报错原因如下
求各位大神指点。
巴扎黑2017-04-18 09:08:19
Thanks for the invitation! !
I haven’t written in a long timeswing
了,但你的代码错误是因为范型的问题,JComboBox
You need to specify a content type.
Although I have never used it JComboBox
,但猜测内容也无非是String
,Integer
之类,应该是取决于你的JComboBox
What value do you want to store? For example, if you want to select a number, you can do this:
JComboBox<Integer> selectOperaor = new JComboBox<Integer>();