Skip to content

Commit bea9071

Browse files
author
CodexRitik
committed
Merge remote-tracking branch 'origin/master'
2 parents f114546 + c3e0616 commit bea9071

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
-2.43 KB
Binary file not shown.

src/Wrappers.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public static void main(String[] args) {
1414

1515
//Converting this data into Object data (It is called AutoBoxing)
1616
Integer objValue = new Integer(value);//int to Integer conversion explicitly
17-
//You may simple use
17+
//You may use simply
1818
Integer ObjValue = value;
1919
Long BigValue = bigValue;
2020
Character character = ch;
@@ -27,7 +27,7 @@ public static void main(String[] args) {
2727

2828
///Converting Object to Primitive (It is Called UnBoxing)
2929
int newNumber = num.intValue();//Converting Integer to int explicitly
30-
//You may simple use
30+
//You may use simply
3131
int newNum = num;
3232
char chars1 = chars;
3333
long values1 = Values;

0 commit comments

Comments
 (0)