To draw graphics, it is better to define a class that extends ________ and override the paintComponent method.

To draw graphics, it is better to define a class that extends ________ and override the paintComponent method.


A. JLabel
B. JButton
C. JPanel
D. JComponent

The correct answer is C

Explanation: JLabel and JButton are specifically designed with particular features for labels and buttons. They are not appropriate for custom drawing. The problem with JComponent is that you have to write the code to paint the background color if you wish to set a background in the canvas. A simple setBackground(Color color) method will not set a background color in a JComponent.


Java

Learn More Multiple Choice Question :