📄 testsystem.java
字号:
package apibook.c2.s3;public class TestSystem { public static void main(String[] args) { long t1=System.currentTimeMillis(); Object[] obj1=new Object[]{"green","yellow","blue","red"}; System.out.println(obj1[0]+"|"+obj1[1]+"|"+obj1[2]+"|"+obj1[3]); System.out.println(System.getProperty("user.dir")); Object[] obj2=new Object[]{"","","",""}; System.arraycopy(obj1,0,obj2,0,4); System.out.println(obj2[0]+"|"+obj2[1]+"|"+obj2[2]+"|"+obj2[3]); for (int i=0;i<5000 ;i++ ) { } long t2=System.currentTimeMillis(); System.out.println(t2-t1); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -