Dado un valor corto en Java, la tarea es convertir este valor corto en un tipo de string.
Ejemplos:
Input: 1 Output: "1" Input: 3 Output: "3"
Enfoque 1: (usando el operador +)
Un método es crear una variable de string y luego agregar el valor corto a la variable de string. Esto convertirá directamente el valor corto en string y lo agregará en la variable de string.
A continuación se muestra la implementación del enfoque anterior:
Ejemplo 1:
// Java Program to convert short value to String value class GFG { // Function to convert short value to String value public static String convertShortToString(short shortValue) { // Convert short value to String value // using + operator method String stringValue = "" + shortValue; return (stringValue); } // Driver code public static void main(String[] args) { // The short value short shortValue = 1; // The expected string value String stringValue; // Convert short to string stringValue = convertShortToString(shortValue); // Print the expected string value System.out.println( shortValue + " after converting into string = " + stringValue); } }
Producción:
1 after converting into string = 1
Enfoque 2: (usando el método String.valueOf())
La forma más sencilla de hacerlo es usando el método valueOf() de la clase String en el paquete java.lang . Este método toma el valor corto que se va a analizar y devuelve el valor en tipo String.
Sintaxis:
String.valueOf(shortValue);
A continuación se muestra la implementación del enfoque anterior:
Ejemplo 1:
// Java Program to convert short value to String value class GFG { // Function to convert short value to String value public static String convertShortToString(short shortValue) { // Convert short value to String value // using valueOf() method return String.valueOf(shortValue); } // Driver code public static void main(String[] args) { // The short value short shortValue = 1; // The expected string value String stringValue; // Convert short to string stringValue = convertShortToString(shortValue); // Print the expected string value System.out.println( shortValue + " after converting into string = " + stringValue); } }
Producción:
1 after converting into string = 1