“Value of vs tostring” Code-Antworten

Value of 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

Value of 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

Ähnliche Antworten wie “Value of vs tostring”

Fragen ähnlich wie “Value of vs tostring”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen