📄 j03090402.java
字号:
import java.lang.*;
import java.awt.*;
public class j03090402 extends Frame
{
Button B1;
public j03090402()
{
//默认使用的是 BorderLayout
B1 = new Button("确定");
B1.setBounds(20,80,150,30); //目前没用
//此项要 this.setLayout(null); 才有用
this.add(B1); //没指定位置,默认是 CENTER
//=====================================================
this.setBounds(200,100,200,150); //设定窗口的位置和大小
this.setTitle("默认使用 BorderLayout");
this.setVisible(true);
}
public static void main(String[] para)
{
new j03090402();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -