基本數據類型爲int,short ,byte,char,long,double,booleangit
基本數據類型的包裝類Integer,Short,Byte,Character,Long,Double,Booleanspa
第一種構造方法把基本類型包裝爲包裝類code
public Type(type value)對象
建立一個包裝類對象例子:blog
Integer intValue=new Integer(21); Long longValue=new Long(21L); Character charValue=new Character('x'); Boolean booleanValue=new Boolean(true); Float floatValue=new Float(21F);
第二種構造方法把字符串轉換爲包裝類字符串
Byte byteValue=new Byte("21"); Float floatValue=new Float("21");
Short shorValue=new Short("11"); Integer intValue=new Integer("22");
Double doubleValue=new Double("22.2");
Boolean booleanValue=new Boolean("true");
Character不能使用第二種構造方法,由於他不能接收字符串。it
包裝類轉基本類型class
public type typeValue();數據類型
Integer a=new Integer(10); int a1=a.intValue();其餘類型也是xxxValue();除了Character
Long a2=new Long(11);
long a3=a2.longValue();
在Character類中有兩個靜態方法
publice static boolean isDigit(char ch)肯定製定字符串是否爲數字。float
public static boolean isLetter(char ch)肯定製定字符是否爲字母。
字符串轉基本類型
public static tpe paseType(String type);
int num=Integer.parseInt("36");
long longValue=Long.parseLong("2623");
基本類型轉字符串
public static String toString(type value);
String sex=Character.toString('男'); String id =Integer.toString(26); String sex='男'+""; String id=25+"";
Math類