Autoboxing/unboxing occurs inside expressions. : Autobox Unbox « Data Type « Java

Home
Java
1.2D Graphics GUI
2.3D
3.Advanced Graphics
4.Ant
5.Apache Common
6.Chart
7.Class
8.Collections Data Structure
9.Data Type
10.Database SQL JDBC
11.Design Pattern
12.Development Class
13.EJB3
14.Email
15.Event
16.File Input Output
17.Game
18.Generics
19.GWT
20.Hibernate
21.I18N
22.J2EE
23.J2ME
24.JDK 6
25.JNDI LDAP
26.JPA
27.JSP
28.JSTL
29.Language Basics
30.Network Protocol
31.PDF RTF
32.Reflection
33.Regular Expressions
34.Scripting
35.Security
36.Servlets
37.Spring
38.Swing Components
39.Swing JFC
40.SWT JFace Eclipse
41.Threads
42.Tiny Application
43.Velocity
44.Web Services SOA
45.XML
Java » Data Type » Autobox UnboxScreenshots 
Autoboxing/unboxing occurs inside expressions.
  
   
class AutoBox3 {
  public static void main(String args[]) {

    Integer iOb, iOb2;
    int i;

    iOb = 100;
    System.out.println("Original value of iOb: " + iOb);

    ++iOb;
    System.out.println("After ++iOb: " + iOb);

    iOb2 = iOb + (iOb / 3);
    System.out.println("iOb2 after expression: " + iOb2);

    i = iOb + (iOb / 3);
    System.out.println("i after expression: " + i);

  }
}

   
  
Related examples in the same category
1.What is Autoboxing?
2.Type conversion (JDK1.5 Autoboxing/Unboxing)
3.Demonstrate autobox and unbox.Demonstrate autobox and unbox.
4.Autobox unbox takes place with method parameters and return values.Autobox unbox takes place with method parameters and return values.
5.Autobox unbox occurs inside expressions. Autobox unbox occurs inside expressions.
6.Autobox unbox: convertAutobox unbox: convert
7.Autobox unbox a Boolean and Character. Autobox unbox a Boolean and Character.
8.An error produced by manual unboxing. An error produced by manual unboxing.
9.Java Autobox and UnboxJava Autobox and Unbox
10.Autobox DemoAutobox Demo
11.Autoboxing/unboxing takes place with method parameters and return values.
12.Auto-unboxing allows you to mix different types of numeric objects in an expression.
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.