- import java.awt.*;
- class shuchu
- { public static void main(String []args)
- {
- Frame f=new Frame("a wat");
- f.setSize(500,400);
- //f.location(200,200);//已过时。 从 JDK version 1.1 开始,由 getLocation() 取代。而且location()方法并没有location(int x, int y)的重载形式。
- //f.location();//这句可以编译通过,但已过时不推荐使用,相当于getLocation()方法,返回一个位置对象Point
- f.setLocation(200,200);//如果需要设置窗体的初始位置,可以使用setLocation(int x, int y)方法。
- Button b=new Button("按钮");
- f.setLayout(new FlowLayout());
- f.add(b);
- f.setVisible(true);
- }
- }
复制代码 黑马云青年为您解答。:D |