Netbeans GUI 设计中的新 JFrame 中的自动制造"main"类



当我在Netbeans中创建一个新的JFrame时,有一个自动创建的主类。即使我把它放在/* */中,代码也能正常工作。我了解到,在任何java程序中,必须只有一个主类,它是程序的起点。

    JFrame中main类的用途是什么?
  1. 我保留或者删除会有什么问题吗?
  2. 我什么时候可以调用主类内部的代码?

//    public static void main(String args[]) {
        /* Set the Nimbus look and feel */
        //<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
        /* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
         * For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html 
         */
       /* try {
                          System.out.println("111111111111111");
            for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
                if ("Nimbus".equals(info.getName())) {
                    javax.swing.UIManager.setLookAndFeel(info.getClassName());
                    break;
                }
            }
        } catch (ClassNotFoundException | InstantiationException | IllegalAccessException | javax.swing.UnsupportedLookAndFeelException ex) {
            java.util.logging.Logger.getLogger(Welcome.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        }
        //</editor-fold>
/*
        /* Create and display the form 
        java.awt.EventQueue.invokeLater(new Runnable() {
            @Override
            public void run() {
                //welcomeUser.setText("Welcome");
                System.out.println("111111111111111");
                //new Welcome().setVisible(true);     
                System.out.println("333333333333333");
            }
        });*/
  //  }

main类在JFrame中的用途是什么?

正如您已经说过的,每个程序都必须有一个入口点,由JVM自动调用。有趣的是,您可以有多个类,每个类都有一个main方法。从IDE中,您可以确定应该用于启动程序或手动运行具有main方法的另一个类的"主"类(Shift+F6或右键单击| run)

Jar文件可能包含一个清单条目,该条目指向在运行Jar时要执行的首选"main"类。

关于main的更多细节,请查看这个,关于使用Jar设置应用程序入口点的更多细节,请查看这个

保留或删除有什么问题吗?

。但是,如果您的应用程序中没有另一个具有main方法的类,则它将不再运行。

何时可以在主类中调用代码?

严格来说,你不需要。它代表你被召唤。如果你不希望你的JFrame类有一个main方法(这没有什么错),你可以从另一个类实例化帧(也许甚至从该类的main方法,如果这是什么要求)

相关内容

  • 没有找到相关文章

最新更新