📄 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 + -