There was an error while loading. Please reload this page.
2 parents f114546 + c3e0616 commit bea9071Copy full SHA for bea9071
out/production/Java Program/Wrappers.class
-2.43 KB
src/Wrappers.java
@@ -14,7 +14,7 @@ public static void main(String[] args) {
14
15
//Converting this data into Object data (It is called AutoBoxing)
16
Integer objValue = new Integer(value);//int to Integer conversion explicitly
17
- //You may simple use
+ //You may use simply
18
Integer ObjValue = value;
19
Long BigValue = bigValue;
20
Character character = ch;
@@ -27,7 +27,7 @@ public static void main(String[] args) {
27
28
///Converting Object to Primitive (It is Called UnBoxing)
29
int newNumber = num.intValue();//Converting Integer to int explicitly
30
31
int newNum = num;
32
char chars1 = chars;
33
long values1 = Values;
0 commit comments