我走遍了各個論壇,發現了一個類似於我的問題,但並沒有回答我即將問到的問題。我如何閱讀Javadocs?
public class DrawSomething extends JPanel {
public void paintComponent(Graphics g); //how is an object passed in that parameter?
super.paintComponent(g); //I don't get how that works
this.setBackground(Color.white);
我再次失去了以上面的代碼怎麼給汲取JPanel的東西的功能。