?? sweetshop.java
字號:
package chapter14;
class Candy{
static {
System.out.println("Three days has passed since National Day holiday begins.");
}
}
public class SweetShop{
public static void main(String args[]){
try {
Class.forName("chapter14.Candy");
/*
* 如果沒能加上chapter14.如果是:Can not find the class.
* 也就是拋出了異常,加上后就正常了。
*/
}catch(ClassNotFoundException e){
System.out.println("Can not find the class.");
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -