Cet article vous donne une introduction détaillée à la conversion mutuelle entre string et int en Java à travers un exemple de code. Les amis intéressés devraient y jeter un œil
int ->
int i=12345; String s="";String -> 🎜>
Core :
s="12345"; int i;
Le résultat du test de cette méthode est 20171091. i=Integer.parseInt(s);
package com.fry.util; public class Transfer { public void stringToInt(){ String id="20171091"; int n=Integer.parseInt(id); System.out.println(n); } }Conversion de chaîne et int en java 1 Comment convertir une chaîne en entier entier ?
A. Il existe deux méthodes : 1). ,[int radix]);
2). int i = Integer.valueOf(my_str).intValue();Remarque : Méthode pour convertir une chaîne en Double, Float, Long Beaucoup de idem.2 Comment convertir un entier en chaîne String ?A Il existe trois méthodes :1.) String s = String.valueOf(i) ;2.) String s = Integer.toString(i);3.) String s = "" + i;Remarque : Double, Float, Long Les méthodes de conversion en chaînes sont similaires. La première méthode : s=i+"";La deuxième méthode : s= String .valueOf(i);Quelle est la différence entre ces deux méthodes ? Les effets sont-ils les mêmes ? Sont-ils interchangeables en toutes circonstances ?int -> String int i=12345; String s="";La première méthode : i=Integer.parseInt(s);
La deuxième méthode : i=Integer valueOf(. s).intValue();
Quelle est la différence entre ces deux méthodes ? Les effets sont-ils les mêmes ? Sont-ils interchangeables en toutes circonstances ?
String -> int s="12345"; int i;
La première méthode : s=i+"" // produira deux objets String
La deuxième méthode : s=String.valueOf(i ) ; //Utilisez directement la méthode statique de la classe String, et ne générez qu'un seul objet
La première méthode : i=Integer.parseInt(s); //Utilisez directement la méthode statique, aucun objet redondant ne sera généré, Mais une exception sera levée
La deuxième méthode : i=Integer.valueOf(s).intValue();//Integer.valueOf(s) est équivalent à new Integer(Integer.parseInt(s)), ce qui lancera également une Exception, mais un objet supplémentaire sera généré ------------------------- ---- ------------------------------------- 1Comment convertir la chaîne String en un entier entier ?
i = Integer.parseInt([String],[int radix]);2). ();
Remarque : Les méthodes de conversion de chaînes en Double, Float et Long sont similaires.2 Comment convertir entier en chaîne de mots ?
A Il existe trois méthodes :
1.) String s = String.valueOf(i); 2.) String s = Integer.toString(i);3.) String s = "" + i;
Remarque : Double, Float, Long sont convertis en chaînes Les méthodes sont similaires.
Conversion de type de données JAVAConversion de type de mot cléCeci est un exemple, parlant de la conversion de types de données en JAVA. Fourni Apprenons à utiliserFonctions de conversion de types de données couramment utilisées en JAVA Bien qu'elles puissent toutes être trouvées dans l'API JAVA, organisez-les et faites une sauvegarde.
Résumé
package cn.com.lwkj.erts.register; import java.sql.Date; public class TypeChange { public TypeChange() { } //change the string type to the int type public static int stringToInt(String intstr) { Integer integer; integer = Integer.valueOf(intstr); return integer.intValue(); } //change int type to the string type public static String intToString(int value) { Integer integer = new Integer(value); return integer.toString(); } //change the string type to the float type public static float stringToFloat(String floatstr) { Float floatee; floatee = Float.valueOf(floatstr); return floatee.floatValue(); } //change the float type to the string type public static String floatToString(float value) { Float floatee = new Float(value); return floatee.toString(); } //change the string type to the sqlDate type public static java.sql.Date stringToDate(String dateStr) { return java.sql.Date.valueOf(dateStr); } //change the sqlDate type to the string type public static String dateToString(java.sql.Date datee) { return datee.toString(); } public static void main(String[] args) { java.sql.Date day ; day = TypeChange.stringToDate("2003-11-3"); String strday = TypeChange.dateToString(day); System.out.println(strday); } }
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!