关于AWT一个极简单的问题..
本意是一个200长宽的红的方块Frame里面有一个100长宽的绿的方块
帮忙看下..现在的情况是只有绿的没红的...
import java.awt.*;
public class MyFrame extends Frame
{
public MyFrame (String str)
{
super(str); //调用父类的构造方法
}
public static void main(String args[ ])
{
MyFrame fr = new MyFrame("Hello Out There!"); //构造方法
Panel pan = new Panel();
fr.setSize(200,200);//设置Frame的大小,缺省为(0,0)
fr.setBackground(Color.red);//设置Frame的背景,缺省为红色
pan.setSize(100,100);
pan.setBackground(Color.GREEN);
fr.add(pan);
fr.setVisible(true);//设置Frame为可见,缺省为不可见
}
}