logo

Valeur de chaîne JavaDe()

Le chaîne java valueOf() La méthode convertit différents types de valeurs en chaîne. À l'aide de la méthode string valueOf(), vous pouvez convertir int en chaîne, long en chaîne, booléen en chaîne, caractère en chaîne, float en chaîne, double en chaîne, objet en chaîne et tableau de caractères en chaîne.


Implémentation interne

 public static String valueOf(Object obj) { return (obj == null) ? 'null' : obj.toString(); } 

Signature

La signature ou la syntaxe de la méthode string valueOf() est donnée ci-dessous :

 public static String valueOf(boolean b) public static String valueOf(char c) public static String valueOf(char[] c) public static String valueOf(int i) public static String valueOf(long l) public static String valueOf(float f) public static String valueOf(double d) public static String valueOf(Object o) 

Retour

représentation sous forme de chaîne d'une valeur donnée


Exemple de méthode Java String valueOf()

 public class StringValueOfExample{ public static void main(String args[]){ int value=30; String s1=String.valueOf(value); System.out.println(s1+10);//concatenating string with 10 }} 
Testez-le maintenant

Sortir:

 3010 

Exemple de méthode Java String valueOf (boolean bol)

Il s'agit d'une version booléenne de la méthode valueOf() surchargée. Il prend une valeur booléenne et renvoie une chaîne. Voyons un exemple.

 public class StringValueOfExample2 { public static void main(String[] args) { // Boolean to String boolean bol = true; boolean bol2 = false; String s1 = String.valueOf(bol); String s2 = String.valueOf(bol2); System.out.println(s1); System.out.println(s2); } } 
Testez-le maintenant

Sortir:

paramètres du navigateur Internet
 true false 

Exemple de méthode Java String valueOf(char ch)

Il s'agit d'une version char de la méthode valueOf() surchargée. Il prend la valeur char et renvoie une chaîne. Voyons un exemple.

 public class StringValueOfExample3 { public static void main(String[] args) { // char to String char ch1 = 'A'; char ch2 = 'B'; String s1 = String.valueOf(ch1); String s2 = String.valueOf(ch2); System.out.println(s1); System.out.println(s2); } } 
Testez-le maintenant

Sortir:

 A B 

Java String valueOf (float f) et valueOf (double d)

Il s'agit d'une version flottante de la méthode valueOf() surchargée. Il prend une valeur flottante et renvoie une chaîne. Voyons un exemple.

file d'attente prioritaire Java
 public class StringValueOfExample4 { public static void main(String[] args) { // Float and Double to String float f = 10.05f; double d = 10.02; String s1 = String.valueOf(f); String s2 = String.valueOf(d); System.out.println(s1); System.out.println(s2); } } 
Testez-le maintenant

Sortir:

 10.05 10.02 

Java String valueOf() Exemples complets

Voyons un exemple dans lequel nous convertissons toutes les primitives et objets en chaînes.

 public class StringValueOfExample5 { public static void main(String[] args) { boolean b1=true; byte b2=11; short sh = 12; int i = 13; long l = 14L; float f = 15.5f; double d = 16.5d; char chr[]={'j','a','v','a'}; StringValueOfExample5 obj=new StringValueOfExample5(); String s1 = String.valueOf(b1); String s2 = String.valueOf(b2); String s3 = String.valueOf(sh); String s4 = String.valueOf(i); String s5 = String.valueOf(l); String s6 = String.valueOf(f); String s7 = String.valueOf(d); String s8 = String.valueOf(chr); String s9 = String.valueOf(obj); System.out.println(s1); System.out.println(s2); System.out.println(s3); System.out.println(s4); System.out.println(s5); System.out.println(s6); System.out.println(s7); System.out.println(s8); System.out.println(s9); } } 
Testez-le maintenant

Sortir:

 true 11 12 13 14 15.5 16.5 java StringValueOfExample5@2a139a55