You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Partner_Project/src/ui/MathLearningApp.java

24 lines
446 B

package ui;
import javax.swing.SwingUtilities;
/**
* 数学学习软件主入口
*
* @author 结对项目
* @version 1.0
*/
public class MathLearningApp {
/**
* 程序主入口
*
* @param args 命令行参数
*/
public static void main(String[] args) {
SwingUtilities.invokeLater(() -> {
LoginFrame loginFrame = new LoginFrame();
loginFrame.setVisible(true);
});
}
}