El paso a paso o código que encontrarás en este post es la solución más eficiente y efectiva que encontramos a esta inquietud o problema.
Ejemplo 1: convertir char a string Java
char c ='a';String s =Character.toString(c);//s == "a"
Ejemplo 2: convertir char a int en java
publicclassJavaExamplepublicstaticvoidmain(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);
Comentarios y calificaciones
Si te mola la invitación, tienes la libertad de dejar un tutorial acerca de qué te ha impresionado de esta crónica.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)