文档里面例子Frame f = new Frame(GraphicsConfiguration gc);
            Rectangle bounds = gc.getBounds();
            f.setLocation(10 + bounds.x, 10 + bounds.y);
但是这样的话会出错.第一行:')'excepted
然后我改成GraphicsConfiguration gc;
          Frame f = new Frame(GraphicsConfiguration gc);
          Rectangle bounds = gc.getBounds();
          f.setLocation(10 + bounds.x, 10 + bounds.y);
说gc没有初始化..如果GraphicsConfiguration gc=new GraphicsConfiguration();
GraphicsConfiguration 是个抽象类..要实现所有的抽象方法...还有别的什么好方法么?或者就用GraphicsConfiguration ,但应该如何实现呢????