We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8446951 commit 0742d7aCopy full SHA for 0742d7a
1 file changed
Samples/src/main/java/okaram/samples/BoxingExamples.java
@@ -0,0 +1,17 @@
1
+package okaram.samples;
2
+
3
+public class BoxingExamples {
4
5
+ public static void IntegerExample() {
6
+ Integer i=new Integer(3);
7
+ int j=i.intValue();
8
9
+ int k=i;
10
+ System.out.println(i.toString() + " "+ j + k);
11
+ }
12
13
+ public static void main(String[] args) {
14
+ IntegerExample();
15
16
17
+}
0 commit comments