Home
Random
Nearby
Log in
Settings
Donate Now
If Wikipedia is useful to you, please give today.
About Wikipedia
Disclaimers
Search
Boxing (computer programming): Difference between revisions
Article
Talk
Language
Watch
View history
Edit
Browse history interactively
← Previous edit
Next edit →
Content deleted
Content added
Visual
Wikitext
Revision as of 17:25, 11 May 2011
edit
213.65.80.158
(
talk
)
→
Autoboxing
← Previous edit
Revision as of 17:28, 11 May 2011
edit
undo
213.65.80.158
(
talk
)
→
Autoboxing
Next edit →
Line 28:
Integer j = new Integer(13);
int k = 9 + 13; // always OK
int
Integer
l = i + j; // error in versions prior to 5.0!
</source>