这是无效的吗?
public class LayerItem extends JLabel{
public LayerItem(){
this.addActionListener(new java.awt.event.ActionListener(){
@Override
public void actionPerformed(java.awt.event.ActionEvent evt){
}
});
}
}
我在第3行收到错误:cannot find symbol: method addActionListener(<anonymous ActionListener>)
答案 0 :(得分:4)
方法addActionListener
不适用于JLabel
组件。