Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

how to convert int into Integer

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 #int #Integer
ADD COMMENT
Topic
Name
1+6 =