Automatyczna konwersja prymitywnych typów danych na odpowiadający im typ opakowania jest nazywana pakowaniem, a operacja odwrotna nazywana jest rozpakowywaniem. To jest nowa funkcja Java5. Zatem programista Java nie musi pisać kodu konwersji.
int do napisania Java
Zaleta automatycznego pakowania i rozpakowywania:
Nie ma potrzeby ręcznej konwersji pomiędzy elementami podstawowymi i opakowaniami, więc wymagane jest mniej kodowania. |
Prosty przykład automatycznego boksowania w Javie:
class BoxingExample1{ public static void main(String args[]){ int a=50; Integer a2=new Integer(a);//Boxing Integer a3=5;//Boxing System.out.println(a2+' '+a3); } }
Przetestuj teraz Output:50 5
pobierz ten przykład
Prosty przykład rozpakowywania w Javie:
Automatyczna konwersja typu klasy opakowania na odpowiedni typ pierwotny jest znana jako Unboxing. Zobaczmy przykład rozpakowania:
class UnboxingExample1{ public static void main(String args[]){ Integer i=new Integer(50); int a=i; System.out.println(a); } }
Przetestuj teraz Wyjście:
50
Autoboxing i Unboxing za pomocą operatorów porównania
Autoboxing można wykonać za pomocą operatorów porównania. Zobaczmy przykład boksowania z operatorem porównania: |
class UnboxingExample2{ public static void main(String args[]){ Integer i=new Integer(50); if(i<100){ unboxing internally system.out.println(i); } < pre> <span> Test it Now </span> <pre> Output:50 </pre> <hr> <h3>Autoboxing and Unboxing with method overloading</h3> <table class="table"> <tr><td>In method overloading, boxing and unboxing can be performed. There are some rules for method overloading with boxing: <ul> <tr><td>Widening beats boxing</td> </tr><tr><td>Widening beats varargs</td> </tr><tr><td>Boxing beats varargs</td> </tr></ul> </td></tr> </table> <h3>1) Example of Autoboxing where widening beats boxing</h3> <table class="table"> <tr><td>If there is possibility of widening and boxing, widening beats boxing.</td></tr> </table> <pre> class Boxing1{ static void m(int i){System.out.println('int');} static void m(Integer i){System.out.println('Integer');} public static void main(String args[]){ short s=30; m(s); } } </pre> <span> Test it Now </span> <pre> Output:int </pre> <hr> <h3>2) Example of Autoboxing where widening beats varargs</h3> <table class="table"> <tr><td>If there is possibility of widening and varargs, widening beats var-args.</td></tr> </table> <pre> class Boxing2{ static void m(int i, int i2){System.out.println('int int');} static void m(Integer... i){System.out.println('Integer...');} public static void main(String args[]){ short s1=30,s2=40; m(s1,s2); } } </pre> <span> Test it Now </span> <pre> Output:int int </pre> <hr> <h3>3) Example of Autoboxing where boxing beats varargs</h3> <table class="table"> <tr><td>Let's see the program where boxing beats variable argument:</td></tr> </table> <pre> class Boxing3{ static void m(Integer i){System.out.println('Integer');} static void m(Integer... i){System.out.println('Integer...');} public static void main(String args[]){ int a=30; m(a); } } </pre> <span> Test it Now </span> <pre> Output:Integer </pre> <hr> <h3>Method overloading with Widening and Boxing</h3> <table class="table"> <tr><td>Widening and Boxing can't be performed as given below:</td></tr> </table> <pre> class Boxing4{ static void m(Long l){System.out.println('Long');} public static void main(String args[]){ int a=30; m(a); } } </pre> <span> Test it Now </span> <pre> Output:Compile Time Error </pre></100){>
Autoboxing i Unboxing z przeciążaniem metod
W metodzie przeciążania można wykonać pakowanie i rozpakowywanie. Istnieją pewne zasady dotyczące przeciążania metod za pomocą boksowania: Poszerzenie bije boks | Poszerzenie bije Varargs | Boks pokonuje Varargs | |
1) Przykład Autoboxingu, w którym poszerzenie bije boks
Jeśli istnieje możliwość poszerzania i boksowania, poszerzanie bije boks. |
class Boxing1{ static void m(int i){System.out.println('int');} static void m(Integer i){System.out.println('Integer');} public static void main(String args[]){ short s=30; m(s); } }
Przetestuj teraz Output:int
2) Przykład Autoboxingu, w którym poszerzenie przewyższa varargs
Jeśli istnieje możliwość poszerzenia i varargs, poszerzenie bije od var-args. |
class Boxing2{ static void m(int i, int i2){System.out.println('int int');} static void m(Integer... i){System.out.println('Integer...');} public static void main(String args[]){ short s1=30,s2=40; m(s1,s2); } }
Przetestuj teraz Output:int int
3) Przykład Autoboxingu, w którym boks pokonuje varargs
Zobaczmy program, w którym boks pokonuje zmienny argument: |
class Boxing3{ static void m(Integer i){System.out.println('Integer');} static void m(Integer... i){System.out.println('Integer...');} public static void main(String args[]){ int a=30; m(a); } }
Przetestuj teraz Output:Integer
Przeciążanie metod za pomocą Widening i Boxing
Poszerzenia i boksowania nie można wykonać w sposób podany poniżej: |
class Boxing4{ static void m(Long l){System.out.println('Long');} public static void main(String args[]){ int a=30; m(a); } }
Przetestuj teraz Output:Compile Time Error
100){>