-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJAVAPEP.java
56 lines (41 loc) · 1.23 KB
/
JAVAPEP.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package javapep;
import java.util.ArrayList;
/**
*
* @author anil
*/
public class JAVAPEP {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
ArrayList<Integer> al=new ArrayList<Integer>();
al.add(10);
al.add(20);
al.add(30);
al.add(40);
System.out.println(al);
System.out.println(al.get(2));
al.set(2,90);
System.out.println(al);
al.add(1,60);
System.out.println(al);
System.out.println(al.indexOf(60));
System.out.println(al.subList(2,4));//sublist
ArrayList<Integer> al1=new ArrayList<Integer>();
al1=al;
// System.out.println(al1);
//System.out.println(al1);
//System.out.println(al1.removeAll(al1));
//System.out.println(al1);
// al.retainAll(al1);//it will retains all the members which are in al
//System.out.println(al);
// al1.clear();
// System.out.println(al1);
}
}