?? appletexe.java
字號:
import java.awt.*;
import java.applet.Applet;
public class AppletExe extends Applet{
public static String s;
public void init(){
System.out.println("This is init();");
s=new String("Java Applet Method!");
}
public void start(){
System.out.println("This is start();");
}
public void stop(){
System.out.println("This is stop();");
}
public void paint(Graphics g){
System.out.println("This is paint();");
g.drawString(s,40,40);
}
public void destroy(){
System.out.println("This is destroy();");
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -