24 Graphics类 ava 2如果声明的类不是组件类 Component的子类: 则欲绘图的组件必须使用 getGraphics(方法获得一个包含有该组件 显示外观信息的 Graphics对象然后可以在这个组件上进行绘图操作。 public Graphics get Graphics import java. awt. public class Myt public static void main(String args])t Frame f=new frame 0: f setsize(200,200) f setVisible(true) f. Graphics. drawString( test,50, 50); Por gr amming in Java 2008.3-2008 7 by Yanjun Zhang, Depar tment of Computer HanDan Col lage绪 论 Porgramming in Java 2008.3-2008.7 by Yanjun Zhang,Department of Computer HanDan Collage. 2.4 Graphics类 2.如果声明的类不是组件类Component的子类: 则欲绘图的组件必须使用getGraphics()方法获得一个包含有该组件 显示外观信息的Graphics对象然后可以在这个组件上进行绘图操作。 public Graphics getGraphics() import java.awt.*; public class My{ public static void main(String args[]){ Frame f=new Frame(); f.setSize(200,200); f.setVisible(true); f.getGraphics().drawString("test",50,50); } }