-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathArrayMethod2.java
32 lines (25 loc) · 933 Bytes
/
ArrayMethod2.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package basicjava;
import java.util.ArrayList;
public class ArrayMethod2 {
public static void main(String[] args) {
ArrayList<Integer> arr1 = new ArrayList<>();
ArrayList<Integer> arr2 = new ArrayList<>();
ArrayList<Integer> arr3 = new ArrayList<>();
arr1.add(10);
arr1.add(20);
arr1.add(30);
arr1.add(40);
arr1.add(50);
System.out.println("The elements of Array 1: "+arr1);
arr2.add(1);
arr2.add(2);
arr2.add(3);
arr2.add(4);
arr2.add(5);
System.out.println("The elements of Array 2: "+arr2);
arr3.addAll(arr1); // coping all elements of arr1
System.out.println("The elements of Array 3: "+arr3);
boolean result = arr1.equals(arr2);
System.out.println("The result is: "+result);
}
}