📄 winapp.java
字号:
package j02100303;
import java.lang.*;
//import java.awt.*; //若要使用 AWT 组件,目前没有
//import javax.swing.*; //若要使用 swing 组件,目前没有
public class winApp
{
theJFrame Frame1;
theJFrame Frame2;
public static void main(String para[])
{
winApp myApp = new winApp();
myApp.Frame1 = new theJFrame(0,0,230,200);
myApp.Frame1.setTitle("This is Frame1");
myApp.Frame2 = new theJFrame(240,0,230,200);
myApp.Frame2.setTitle("This is Frame2");
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -