“Valorof vs ToString” Respostas de código

Valorof 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

Valorof 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

Respostas semelhantes a “Valorof vs ToString”

Perguntas semelhantes a “Valorof vs ToString”

Procure respostas de código populares por idioma

Procurar outros idiomas de código