cast from string to int in java code example
Example 1: java string to int
int result = Integer.parseInt("500");
System.out.println(result) // prints 500 as int
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;