Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

how to convert primitive int to Integer in java

public class IntToIntegerExample {
  	public static void main(String[] args) {
    int i = 10;    
    Integer intObj = new Integer(i);
    System.out.println(intObj);
  }
}
Source by www.java-examples.com #
 
PREVIOUS NEXT
Tagged: #convert #primitive #int #Integer #java
ADD COMMENT
Topic
Name
2+9 =