当前位置: 技术问答>java相关
各位大侠帮小弟看看
来源: 互联网 发布时间:2017-04-16
本文导语: import java.awt.*; import java.awt.event.*; import javax.swing.*; //import MyWindowListener; public class ButtonEvent extends JFrame implements ActionListener { JButton button = new JButton("Click me"); JTextArea textArea = new JTextArea(2,20); Container c; ...
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
//import MyWindowListener;
public class ButtonEvent extends JFrame implements ActionListener
{
JButton button = new JButton("Click me");
JTextArea textArea = new JTextArea(2,20);
Container c;
int clickCount=0;
public void ButtonEvent()
{
super( "Button Event.java:按钮时间测试" );
c = getContentPane();
c.setLayout(new FlowLayout());
c.add(button);
c.add(textArea);
setSize(300,120);
show();
button.addActionListener(this);
}
public void actionPerformed(ActionEvent e)
{
clickCount++;
textArea.setText("您按click me"+clickCount+"次");
}
public static void main(String args[])
{
ButtonEvent app = new ButtonEvent();
}
}
---------- 编译JAVA ----------
C:WINDOWSDesktopButtonEvent.java:13: call to super must be first statement in constructor
super( "Button Event.java:按钮时间测试" );
^
1 error
Normal Termination
输出完成 (耗费 12 秒)。
import java.awt.event.*;
import javax.swing.*;
//import MyWindowListener;
public class ButtonEvent extends JFrame implements ActionListener
{
JButton button = new JButton("Click me");
JTextArea textArea = new JTextArea(2,20);
Container c;
int clickCount=0;
public void ButtonEvent()
{
super( "Button Event.java:按钮时间测试" );
c = getContentPane();
c.setLayout(new FlowLayout());
c.add(button);
c.add(textArea);
setSize(300,120);
show();
button.addActionListener(this);
}
public void actionPerformed(ActionEvent e)
{
clickCount++;
textArea.setText("您按click me"+clickCount+"次");
}
public static void main(String args[])
{
ButtonEvent app = new ButtonEvent();
}
}
---------- 编译JAVA ----------
C:WINDOWSDesktopButtonEvent.java:13: call to super must be first statement in constructor
super( "Button Event.java:按钮时间测试" );
^
1 error
Normal Termination
输出完成 (耗费 12 秒)。
|
调用super必须在construct方法中
即:public ButtonEvent,没有void
即:public ButtonEvent,没有void
|
super();方法必须在构造函数的第一句里写
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。