-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVector&Map.java
70 lines (60 loc) · 1.59 KB
/
Vector&Map.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
package collection;
import java.util.*;
public class VectorDemo {
public static void main(String[] args) {
Vector<String>animals=new Vector<>();
animals.add("Dog");
animals.add("Cat");
animals.add("Horse");
System.out.println("Initial Vector:"+animals);
//get method
String element=animals.get(2);
System.out.println("Get:"+element);
//using iterator
Iterator<String>it=animals.iterator();
System.out.println("vector:");
while(it.hasNext()) {
System.out.println(it.next());
}
//remove
element=animals.remove(1);
System.out.println("Removed element:"+element);
}
}
package collection;
import java.util.*;
public class MapDemo {
public static void main(String []args) {
Map<Integer,String>map=new HashMap<Integer,String>();
System.out.println(map);
map.put(96, "Dinesh");
map.put(80, "Merin");
map.put(100, "Swathi");
System.out.println(map);
}
}
package collection;
import java.util.*;
public class MapDemo2 {
public static void main(String[] args) {
Map<String,String>map=new HashMap<String,String>();
map.put("First", "Way");
map.put("Second", "Gate");
map.put("Third", "Wall");
map.put("Fourth", "Person");
System.out.println(map);
}
}
package collection;
import java.util.*;
public class MapDemo3 {
public static void main(String[] args) {
HashMap<Integer,String>map=new HashMap<Integer,String>();
map.put(null, "MNC");
map.put(null, "TCS");
map.put(null, "Google");
map.put(1004, "CTS");
map.put(7005, "Vitrusa");
System.out.println(map);
}
}