“valeur de vs tostring” Réponses codées

valeur 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

valeur 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

Réponses similaires à “valeur de vs tostring”

Questions similaires à “valeur de vs tostring”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code