Answers for "int* to int"

1

how to convert int to integer in java

// new Integer(i) is deprecated in java
//therefore you can use the below mentioned technique
int iInt = 10;
Integer iInteger = Integer.valueOf(iInt);
Posted by: Guest on July-03-2021
0

how do you set an integer to a number in java

int num = 9;
Posted by: Guest on October-20-2020
-2

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);
Posted by: Guest on March-12-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language