Differences between components and lightweight/heavyweight

后端 未结 4 1370
野的像风
野的像风 2020-12-16 18:24

What is the difference between JPanel and JFrame and relationship to lightweight, heavyweight?

4条回答
  •  -上瘾入骨i
    2020-12-16 19:06

    Heavyweight components like "AWT" components must be drawn using native GUI on a specific platform.

    Where lightweight components like "Swing" components are drawn by java and don't rely on native GUI.

提交回复
热议问题