package com.swing; import javax.swing.JButton;import javax.swing.JFrame;class jframe extends JFrame{ private JButton jbutton=null; public static void main(String[] args){ //创建顶层容器(可以用于添加其它wing组件) jframe jf=new jframe(); } jframe(){ //设置标题 this.setTitle("Hellow,Xiaohongyang!"); this.jbutton=new JButton("我是按钮"); this.add(jbutton); //设置窗体大小 this.setSize(400,400); //初始化位置 this.setLocation(50,200); //关闭窗口是退出进程 this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); //显示窗口 this.setVisible(true); }}