更具体地说,我在谈论Java Swing,您将使用lambda表达式添加ActionListener。
combobox.addActionListener(
event -> {if (boolean) runMethod()});
我已经尝试编写,但它没有工作,所以我想知道是不允许这样的逻辑流程,或者我是否只需要重新编写一些内容。
答案 0 :(得分:0)
combobox.addActionListener(
event -> {if (boolean) runMethod();});
缺少分号。