-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWrapperclass.java
110 lines (85 loc) · 1.93 KB
/
Wrapperclass.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
//wrapperclass
package wrapperclass;
public class WrapperClassDemo {
public static void main(String[] args) {
Integer i1=new Integer(100);
System.out.println(i1);
System.out.println(i1.toString());
Integer i2=new Integer(1000);
System.out.println(i2);
System.out.println(i2.toString());
}
}
package wrapperclass;
public class WrapperClassDemoOne {
public static void main(String[] args) {
Integer i1=new Integer(100);
Integer i2=new Integer(1000);
System.out.println(i1+i2);
String str1=i1.toString();
String str2=i2.toString();
System.out.println(str1+str2);
}
}
package wrapperclass;
public class WrapperClassDemoTwo {
public static void main(String[] args) {
System.out.println("Hello world");
int a=Integer.parseInt(args[0]);
int b=Integer.parseInt(args[1]);
int c=a+b;
System.out.println(c);
}
}
package wrapperclass;
public class WrapperClassDemoThree {
public static void main(String[] args) {
Integer i1=new Integer(100);
System.out.println(i1);
Integer a1=Integer.valueOf(10);
System.out.println(a1);
}
}
//BoxingDemo
package wrapperclass;
public class BoxingDemo {
public static void main(String[] args) {
Integer i=new Integer(10);
System.out.println(i); //unbox
int b=i.intValue();
System.out.println(b);
int a=100;
Integer i1=a;
System.out.println(i1);
}
}
//object class Demo
package wrapperclass;
class Sample{
}
class Demo{
public
Demo(){
System.out.println("In Constructor");
}
@Override
protected
void finalize()throws Throwable{
//resource cleanup code
System.out.println("In finalize");
}
}
public class ObjectClassDemo {
public static void main(String[] args) {
Sample S=new Sample();
Sample s1=new Sample();
System.out.println(S.getClass().getName());
System.out.println(S.hashCode());
System.out.println(s1.hashCode());
Demo d=new Demo();
System.out.println(d.hashCode());
//Demo d1=d;
d=null;
System.gc();
}
}