abstract method « Development « Java Swing Q&A





1. abstract method    coderanch.com

//I am wondering after viewing the class Graphics's api, all the methods are abstract, and even the Graphics itself is abstract, then how can we use those methods as nomorally, where are they get implemented?? an example is as follow, can anyone explain to me?? Thanks! import java.applet.*; import java.awt.*; public class Arg extends Applet{ public void paint(Graphics g){ g.setColor(Color.red); //all ...