📄 pr3096.java
字号:
// This test case was built for java/3096.class PR3096{ static void foo (int x[], int i) { ++x[i]; } static void foo (float x[], int i) { ++x[i]; } public static void main(String [] args) { int a[] = new int [1]; float f[] = new float [1]; int b[]; int i = 0; foo (a,0); foo (f,0); System.out.println (a[0]); System.out.println (f[0]); System.out.println ((b=a)[0]); (b=a)[i]=99; b[0]++; System.out.println (a[0]+", "+b[0]); System.out.println (++a[i]); System.out.println (a[i]); System.out.println (a[i]++); System.out.println (a[i]); String s[] = new String [1]; String y[]; s[0]=""; s[0] += "Peace "; System.out.println (s[0]); (y=s)[0] += "now!"; System.out.println (s[0]+", "+y[0]); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -