Advertisement
NestaRama

Autoboxing

Aug 17th, 2017
881
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.17 KB | None | 0 0
  1. package com.bahasaJava.autoboxing;
  2.  
  3. public class Autoboxing {
  4.     public static void main(String[] args) {
  5.         //Boxing
  6.         Integer x = 10;
  7.         //Unboxing
  8.         int z = 5 + x;
  9.     }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement