编程中出现的错误:
1.
throws Exception
2. f.setVisible(true); 导致不可见
import java.awt.*;
public class A
{
public static void main(String args[])throws Exception
{
Frame f=new Frame("颜色变化"); //定义Frame;
f.setSize(600,500); //设定Frame的大小;
f.setVisible(true); //可见
for(int i=0;i<=255;i++)
{
f.setBackground(new Color(i,0,0)); //黑色 ->红色
Thread.sleep(10); //休眠
}
for(int i=0;i<=255;i++)
{
f.setBackground(new Color(255,i,0)); //红色->黄色
Thread.sleep(10);
}
}
}
阅读(531) | 评论(0) | 转发(0) |