Answers for "How to covert a character to an int java"

13

converting char to int in java

public class JavaExample{  
   public static void main(String args[]){  
	char ch = '9';
		
	/* Since parseInt() method of Integer class accepts
   	 * String argument only, we must need to convert
	 * the char to String first using the String.valueOf()
	 * method and then we pass the String to the parseInt()
	 * method to convert the char to int
	 */
	int num = Integer.parseInt(String.valueOf(ch));
		
	System.out.println(num);
   }
}
Posted by: Guest on August-07-2020
0

convert character digit to int java

char x = '9';
int y = x - '0'; // gives the int value 9
Posted by: Guest on September-09-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language