📄 testthis.java
字号:
package class_object;
public class TestThis {
int age;
public TestThis(int age){
this.age=age;
}
public static void main(String[] args) {
TestThis tt=new TestThis(25);
System.out.println("age="+tt.age);
int[] myArray={1,2,3,4,5,6};
int[] hold={10,9,8,7,6,5,4,3,2,1};
System.arraycopy(myArray, 2, hold, 4, myArray.length-2);
for(int i=0;i<hold.length;i++){
System.out.print(hold[i]+" ");
}
System.out.println();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -