public class 关闭窗口{
JFrame jf;
//Inner class for Window Closing
class WindowCloser extends WindowAdapter
{
public void windowClosing(WindowEvent we )
{
//print a message
System.out.println("Oh!Im Finished");
//exit the application
System.exit(0);
}
}
关闭窗口()
{
// create a new frame
jf = new JFrame();
jf.setVisible(true);
jf.setSize(555,555);
jf.addWindowListener(new WindowCloser());
}
public static void main(String[] args) {
关闭窗口 obj = new 关闭窗口();
}
}在这段程序语句中,class WindowCloser extends WindowAdapter这个是什么意思?在这个语句中,public class 关闭窗口{} 和 关闭窗口(){} 代表的是什么意思?是不是和C语言中的主函数以及函数定义这两个大模块的意思差不多???
添加回答
举报
0/150
提交
取消