“valor de vs tostring” Código de respuesta

valor de vs tostring

public static void main(String args[]) {  
    String str = null;
    System.out.println(String.valueOf(str));  // This will print a String equal to "null"        
    System.out.println(str.toString()); // This will throw a NullPointerException
} 
Xerothermic Xenomorph

valor de vs tostring


public static void main(String args[]) {  
    String str = null;
    System.out.println(String.valueOf(str));  // This will print a String equal to "null"        
    System.out.println(str.toString()); // This will throw a NullPointerException
} 

Bright Beaver

Respuestas similares a “valor de vs tostring”

Preguntas similares a “valor de vs tostring”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código