为什么我的窗体不变颜色呀。
import java.awt.Button;import java.awt.Color;
import javax.swing.JFrame;
public class cca {
JFrame f=new JFrame("hello");
Button b=new Button("");
public cca()
{
f.setSize(600,600);
f.setBackground(Color.red);
f.setVisible(true);
}
public static void main(String[] args) {
cca aa=new cca();
}
}
运行后的结果窗体不显示红色也。和没有设置颜色一样。