?? mysuperapplet.java
字號:
//file: MySuperApplet.javaimport java.applet.Applet;import java.awt.*;import javax.swing.*;public class MySuperApplet extends JApplet { // applet's own code, including constructor // and init() and start( ) methods public static void main( String [] args ) { // instantiate the applet JApplet theApplet = new MySuperApplet( ); // create a window for the applet to run in JFrame theFrame = new JFrame( ); theFrame.setSize(200,200); // place the applet in the window theFrame.getContentPane( ).add("Center", theApplet); // start the applet theApplet.init( ); theApplet.start( ); // display the window theFrame.setVisible(true); }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -