摘要: 初学者往往在学习Java Application往往会遇到窗口关不掉的困惑,比如说一下程序: 1 package applicationGraphicsInOut; 2 import java.awt.*; 3 import java.awt.event.*; 4 public class ApplicationGraphicsInOut { 5 public static void main(String args[]) 6 { 7 new FrameInOut(); 8 } 9 10 }11 class FrameInOut extends Fram... 阅读全文
posted @ 2011-11-19 13:02 无措 阅读(24008) 评论(0) 推荐(1) 编辑