package test.object;
import java.awt.Frame;
public class TextMain {
public static void main(String[] args) {
// 创建窗口队形
Frame frame = new Frame("text windows");
// 指定窗口大小
frame.setLocation(100, 100);
frame.setSize(100, 100);
// 指定窗口可见
frame.setVisible(true);
}
}
网友评论