Number Class in java, Boxing and un-boxing
Java Programming Language / OOPs concept more
1257Program:
public class NumberClass { public static void main(String args[]) { Integer n = 10; // boxes int to an Integer object n = n + 10; // unboxes the Integer to a int System.out.println(n); } }
Output:
20 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