?? hellotojava.java
字號:
/*
* HelloToJava.java
*
* Created on 2004年7月5日, 下午15:19
*/
/**
*
* @author jiazh
*/
import java.awt.Graphics;
public class HelloToJava extends java.applet.Applet {
/** Initialization method that will be called after the applet is loaded
* into the browser.
*/
public String sHello;
public void init() {
// TODO start asynchronous download of heavy resources
sHello="歡迎來到Java世界!";
}
public void paint(Graphics g){
g.drawString(sHello, 50, 50);
}
// TODO overwrite start(), stop() and destroy() methods
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -