Java Swing AWT Question:
What are heavyweight and lightweight components?
Answer:
In Java AWT - Abstract Window Toolkit, GUI components created are OS dependent. When they are created, each component forms a peer component due to which they are called heavyweight components.
Swing components are platform independent. No peer components are formed due to which they are called lightweight components.
Swing components are platform independent. No peer components are formed due to which they are called lightweight components.
Previous Question | Next Question |
Explain the differences between Swing and AWT? | What are controls and what are different types of controls in AWT? |