java 型別轉換 Long double String Integer
阿新 • • 發佈:2019-02-16
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);
注: Double, Float, Long 轉成字串的方法大同小異.
JAVA資料型別轉換 ynniebo [收藏]
關鍵字 型別轉換
出處
這是一個例子,說的是JAVA中資料數型的轉換.供大家學習引
package cn.com.lwkj.erts.register;
import java.sql.Date;
publicclass TypeChange {
public TypeChange() {
}
//change the string type to the int typepublicstaticint stringToInt(String intstr)
{
Integer integer;
integer
return integer.intValue();
}
//change int type to the string typepublicstatic String intToString(int value)
{
Integer integer =new Integer(value);
return integer.toString();
}
//change the string type to the float typepublicstaticfloat stringToFloat(String floatstr)
{
Float floatee;
floatee
return floatee.floatValue();
}
//change the float type to the string typepublicstatic String floatToString(float value)
{
Float floatee =new Float(value);
return floatee.toString();
}
//change the string type to the sqlDate typepublicstatic java.sql.Date stringToDate(String dateStr)
{
return java.sql.Date.valueOf(dateStr);
}
//change the sqlDate type to the string typepublicstatic String dateToString(java.sql.Date datee)
{
return datee.toString();
}
publicstaticvoid main(String[] args)
{
java.sql.Date day ;
day = TypeChange.stringToDate("2003-11-3");
String strday = TypeChange.dateToString(day);
System.out.println(strday);
}
}
JAVA中常用資料型別轉換函式
雖然都能在JAVA API中找到,整理一下做個備份。
string->byte
Byte staticbyte parseByte(String s)
byte->string
Byte static String toString(byte b)
char->string
Character static String to String (char c)
string->Short
Short static Short parseShort(String s)
Short->String
Short static String toString(Short s)
String->Integer
Integer staticint parseInt(String s)
Integer->String
Integer static String tostring(int i)
String->Long
Long staticlong parseLong(String s)
Long->String
Long static String toString(Long i)
String->Float
Float staticfloat parseFloat(String s)
Float->String
Float static String toString(float f)
String->Double
Double staticdouble parseDouble(String s)
Double->String
Double static String toString(Double)
++++++++++++++++++++++++++++++++++++++++++++++++++++++
資料型別
基本型別有以下四種:
int長度資料型別有:byte(8bits)、short(16bits)、int(32bits)、long(64bits)、
float長度資料型別有:單精度(32bits float)、雙精度(64bits double)
boolean型別變數的取值有:ture、false
char資料型別有:unicode字元,16位
對應的類型別:Integer、Float、Boolean、Character、Double、Short、Byte、Long