main.java
来自「zheshi这是一个选课系统」· Java 代码 · 共 35 行
JAVA
35 行
/*
* @(#)Main.java 1.0 04/12/13
*
* You can modify the template of this file in the
* directory ..\JCreator\Templates\Template_1\Project_Name.java
*
* You can also create your own project template by making a new
* folder in the directory ..\JCreator\Template\. Use the other
* templates as examples.
*
*/
//package myprojects.main;
import java.io.*;
import java.util.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;
import javax.swing.border.*;
import javax.swing.table.*;
public class Main
{
public Main()
{
}
public static void main(String[] args)
{ //JDialog f=new InquestCourse();
JFrame f=new LoginFrame();
f.show();
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?