Java Examples
Sun certification level tutorial and examples Organized by topic.
Tuesday, March 3, 2009
simple code java autoboxing
public class
AutoboxingEx {
public static void
main(String arg[])
{
int
i=10;
Integer I=i;
// error in 1.4 valid in 1.5
System.out.println(I);
//10
}
}
No comments:
Post a Comment
‹
›
Home
View web version
No comments:
Post a Comment