main.java

来自「本程序是用多线程实现了打飞鸟游戏程序」· Java 代码 · 共 35 行

JAVA
35
字号
/*
 * Main.java
 *
 * Created on 2001年12月27日, 上午10:03
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package shoot_birds;

import java.awt.Toolkit;

/**
 *程序执行的主类
 * @author open
 */
public class Main {
    
    /** Creates a new instance of Main */
    public Main() {
    }
    
    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        mainFrame frame=new mainFrame();
        
      
        frame.setVisible(true);
    }
    
}

⌨️ 快捷键说明

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