Integer Wrapper class in Java
Java Programming Language / Decision Making and Looping in java
1326Program:
public class WrapperClassInteger { public static void main(String args[]){ Integer b=new Integer(4); Integer d=2; System.out.println(b); System.out.println(d); } } /* Wrapper class in java provides the mechanism to convert primitive into object and object into primitive. Since J2SE 5.0, autoboxing and unboxing feature converts primitive into object and object into primitive automatically. The automatic conversion of primitive into object is known as autoboxing and vice-versa unboxing. */
Output:
4 2 Press any key to continue . . .
This Particular section is dedicated to Programs only. If you want learn more about Java Programming Language. Then you can visit below links to get more depth on this subject.
# C Tutorials
# JAVA Tutorials
# HTML Tutorials
# Computer Fundamental
# Data Structure
# DBMS Tutorials
SQL
# C# Language
# R Language
# PHP
# Python
# Vue JS