📄 quiz7_4.java
字号:
public class Quiz7_4 {
String s = "Good morning!";
public Object clone()
throws CloneNotSupportedException {
Quiz7_4 result = (Quiz7_4) super.clone();
return result;
}
public static void main( String[] args )
throws CloneNotSupportedException {
Quiz7_4 x = new Quiz7_4();
Quiz7_4 y = (Quiz7_4) x.clone();
System.out.println( y.s );
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -