Conversion de type en java

Fermé
abdou - 10 juin 2004 à 19:08
 Utilisateur anonyme - 10 juin 2004 à 20:11
comment faire pour convertir un "string" en "int" en java
A voir également:

3 réponses

String piStr = "3.14159";
Float pi = Float.valueOf(piStr);


(http://java.sun.com/docs/books/tutorial/java/data/andback.html)

Car0
0
Même chose avec un Integer, hein ;)

Tient, pour toutes les fonctions possibles:
http://java.sun.com/j2se/1.4.2/docs/api/index.html

Si tu as des erreurs, c'est probablement que tu mélanges la classe Integer et le type de données int. Va voir l'API, ça va te donner une bonne idée.

Caro
0
Utilisateur anonyme
10 juin 2004 à 20:11
Bonsoir,
String s = "45"
int i = new Integer(s).intValue();
a+
0