Swing/JFrame vs AWT/Frame for rendering outside the EDT
问题 What are the principle differences between using an AWT Frame and a Swing JFrame when implementing your own rendering and not using standard Java GUI components? This is a follow on from a previous question: AWT custom rendering - capture smooth resizes and eliminate resize flicker The typical talking points on Swing vs AWT don't seem to apply because we're only using frames. Heavyweight vs Lightweight goes out the window (and JFrame extends Frame), for example. So which is best, JFrame or