これは私のコードです
import java.util.Arrays;
class union {
public static void main(String args[]) {
int[] A = new int[1000];
int[] B = new int[1000];
int[] C = new int[2000];
for (int i= 3;i < 1000 ; i += 3) {
A[i/3] = i;
}
for (int j=5; j < 1000; j += 5) {
B[j/5] = j;
}
C = unionArrays(A, B);
}
}
コンパイル時に次のエラーが発生しました
Exception in thread "main" java.lang.Error: Unresolved compilation problem:
The method unionArrays(int[], int[]) is undefined for the type union
at union.main(union.java:15)