We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd50662 commit 487c950Copy full SHA for 487c950
src/main/java/com/string/StringToIntegerDemo.java
@@ -16,7 +16,7 @@ public static void main(String[] args) {
16
// objectToString();
17
// nullToEmpty();
18
// strToInteger();
19
- integerValueOfDemo();
+// integerValueOfDemo();
20
}
21
22
public static void nullToEmpty() {
@@ -41,4 +41,9 @@ public static void integerValueOfDemo() {
41
Integer value = Integer.valueOf(str);
42
System.out.println(value);
43
44
+
45
+ public static void intToInteger() {
46
+ int value=0;
47
+ Integer val=(Integer)value;
48
+ }
49
0 commit comments