Skip to content

Commit 0742d7a

Browse files
committed
start with collections
1 parent 8446951 commit 0742d7a

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)