[b]Applet[/b]
1. Applet和Swing的顶级容器一样有RootPane,LayeredPane,ContentPane,GlassPane;用户操作也是把组件添加到ContentPane上面
2.Applet的调度时通过事件调度线程进行调度的,而并非浏览器调度。由于Applet的特殊性,所以invokeAndWait方法更为推荐,而不是通常在Swing里面的invokeLater方法
.
1. Applet和Swing的顶级容器一样有RootPane,LayeredPane,ContentPane,GlassPane;用户操作也是把组件添加到ContentPane上面
2.Applet的调度时通过事件调度线程进行调度的,而并非浏览器调度。由于Applet的特殊性,所以invokeAndWait方法更为推荐,而不是通常在Swing里面的invokeLater方法
.