java模拟下雪

时间:2020-12-02 10:10:43
【文件属性】:
文件名称:java模拟下雪
文件大小:1KB
文件格式:JAVA
更新时间:2020-12-02 10:10:43
模拟下雪 Java小程序模拟下雪ublic class CMySnow { public static void main(String[] args) { Frame w=new Frame(); w.setSize(1024, 768); w.setBackground(Color.BLACK); MyPanel03 mp03=new MyPanel03(); w.add(mp03); Thread t=new Thread(mp03); t.start(); w.setVisible(true); } }

网友评论