当前位置: 技术问答>java相关
高人快来
来源: 互联网 发布时间:2015-07-29
本文导语: .... b=new Button("1"); ..... public void actionPerformed(ActionEvent e) { String st; st=e.getLabel(); tf.setText(st); } 编译时报错:Method getLabel() not found in class java.awt.event.ActionEvent 小弟不得其解,请各位高手赐...
....
b=new Button("1");
.....
public void actionPerformed(ActionEvent e) {
String st;
st=e.getLabel();
tf.setText(st);
}
编译时报错:Method getLabel() not found in class java.awt.event.ActionEvent
小弟不得其解,请各位高手赐教,谢谢
b=new Button("1");
.....
public void actionPerformed(ActionEvent e) {
String st;
st=e.getLabel();
tf.setText(st);
}
编译时报错:Method getLabel() not found in class java.awt.event.ActionEvent
小弟不得其解,请各位高手赐教,谢谢
|
(Button)e.getSource().getLabel();
|
st = ((Button)e.getSource()).getLabel();
|
event没有方法getLabel()
Button b=(Button)e.getSource();
st = b.getLabel()
Button b=(Button)e.getSource();
st = b.getLabel()
|
e.getCommandString();
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。