java cast integer to int code example
Example 1: in java how to convert string to integer
class scratch{
public static void main(String[] args) {
String str = "54";
int num = Integer.parseInt("54");
double doub = Double.parseDouble("54");
}
}
Example 2: java casting to int
//In java, you can cast to any primitive type by putting (primitiveType)
//before whatever you're casting to.
private static int myInt = (int)myDouble;
Example 3: how do you set an integer to a number in java
int num = 9;