int와string 형식 전환의 두 가지 방법을 약술하다

2967 단어 intstring유형변환
자세한 내용은 다음과 같습니다.

int -> String
int i=12345;
String s="";
첫 번째 방법: s=i+";
두 번째 방법: s=String.valueOf(i);
이 두 가지 방법은 어떤 차이가 있습니까?작용이 똑같지 않나요?어떤 상황에서도 바꿀 수 있지 않을까요?

String -> int
s="12345";
int i;
첫 번째 방법: i=Integer.parseInt(s);
두 번째 방법: i=Integer.valueOf(s).intValue();
이 두 가지 방법은 어떤 차이가 있습니까?작용이 똑같지 않나요?어떤 상황에서도 바꿀 수 있지 않을까요?
다음은 답입니다.
첫 번째 방법: s=i+";//두 개의 String 객체가 생성됩니다.
두 번째 방법: s=String.valueOf(i);//String 클래스의 정적 방법을 사용하여 하나의 객체만 생성합니다.
첫 번째 방법: i=Integer.parseInt(s);//정적 방법을 직접 사용하면 여분의 대상이 생기지 않지만 이상을 던질 수 있다
두 번째 방법: i=Integer.valueOf(s).intValue();//Integer.valueOf(s)는 new Integer(Integer.parseInt(s))에 해당하며 이상을 던지기도 하지만 대상이 하나 더 생길 수 있습니다.
--------------------------------------------------------------------
1 문자열 String을 정수 int로 변환하는 방법은 무엇입니까?
A. 두 가지 방법이 있습니다.
1). int i = Integer.parseInt([String]); 또는
i = Integer.parseInt([String],[int radix]);
2). int i = Integer.valueOf(my_str).intValue();
주: 문자열을 Double, Float, Long으로 바꾸는 방법은 대동소이하다.
2 정수 int를 문자열 String으로 어떻게 변환합니까?
A. 세 가지 방법이 있습니다.
1.) String s = String.valueOf(i);
2.) String s = Integer.toString(i);
3.) String s = ""+ i;
주: Double, Float, Long을 문자열로 바꾸는 방법은 대동소이하다.
JAVA 데이터 유형 변환
이것은 예입니다. JAVA의 데이터 수형 변환을 말합니다.모두에게 공부를 제공하다

package shenmixiaozhu;
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);
}
}
이상의 내용은 여러분께 소개된 int와string 유형 전환의 두 가지 방법으로 여러분에게 도움이 되기를 바랍니다.

좋은 웹페이지 즐겨찾기