单词测试.java

来自「200多个自己编的java程序,大家可以学一下.」· Java 代码 · 共 41 行

JAVA
41
字号
/* * 单词测试.java * * Created on 2004年9月20日, 下午1:35 *//** * * @author  litertiger */public class 单词测试 extends javax.swing.JDialog {        /** Creates new form 单词测试 */    public 单词测试(java.awt.Frame parent, boolean modal) {        super(parent, modal);        initComponents();    }        /** This method is called from within the constructor to     * initialize the form.     * WARNING: Do NOT modify this code. The content of this method is     * always regenerated by the Form Editor.     */    private void initComponents() {//GEN-BEGIN:initComponents                setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE);        pack();    }//GEN-END:initComponents        /**     * @param args the command line arguments     */    public static void main(String args[]) {        new 单词测试(new javax.swing.JFrame(), true).show();    }        // Variables declaration - do not modify//GEN-BEGIN:variables    // End of variables declaration//GEN-END:variables    }

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?