📄 graphic.java
字号:
package ch10.section05;
public abstract class Graphic
implements IGraphic {
private String name;
public Object clone() {
try {
return super.clone();
}
catch (CloneNotSupportedException e) {
System.out.println("Do not support clone !!!");
throw new InternalError();
}
}
public String getName() {
return name;
}
public void setName(String gName) {
name = gName;
}
public abstract void DoSomething();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -