数据类型转换

来源:互联网 发布:平板淘宝怎么看直播 编辑:程序博客网 时间:2024/05/22 11:52

数据类型

基本类型有以下四种:
整型数据类型有: byte  (8bits,1字节,-2^7—2^7-1)
                short (16bits,2字节,-2^15—2^15-1)
                int   (32bits,4字节,-2^31—2^31-1)
                long  (64bits,8字节,-2^63—2^63-1)。
浮点数据类型有:单精度float(32bits,4字节)、双精度double(64bits,8字节)。
布尔数据
类型有:boolean 字面常量 (1字节)
字符数据类型有:char (16bits,2字节,0—2^16-1)
对应的封装类型:
Byte、Short、IntegerLong、CharacterFloatDouble、Boolean。

转换原则

从低精度向高精度转换为直接转换(隐式转换):
byte 
shortintlongfloatdoublechar
例如:int a = '1'; long b= 45;
从高精度向低精度转换为强制转换(显示转换):
例如:int a = 234,byte b = (byte)
注:两个char型运算时,自动转换为int型;当char与别的类型运算时,也会先自动转换为int型的,再做其它类型的自动转换(这叫表达式的数据类型提升)。

基本类型向类类型转换:

正向转换:通过类包装器来new出一个新的类类型的变量
Integer a= new Integer(2);
反向转换:通过类包装器来转换
int b=a.intValue();

类类型向字符串转换:

正向转换:因为每个类都是object类的子类,而所有的object类都有一个toString()函数,所以通过toString()函数来转换即可
反向转换:通过类包装器new出一个新的类类型的变量
eg1: int i=Integer.valueOf(“123”).intValue()
说明:上例是将一个字符串转化成一个Integer对象,然后再调用这个对象的intValue()方法返回其对应的int数值。
eg2: float f=Float.valueOf(“123”).floatValue()
说明:上例是将一个字符串转化成一个Float对象,然后再调用这个对象的floatValue()方法返回其对应的float数值。
eg3: boolean b=Boolean.valueOf(“123”).booleanValue()
说明:上例是将一个字符串转化成一个Boolean对象,然后再调用这个对象的booleanValue()方法返回其对应的boolean数值。
eg4:double d=Double.valueOf(“123”).doubleValue()
说明:上例是将一个字符串转化成一个Double对象,然后再调用这个对象的doubleValue()方法返回其对应的double数值。
eg5: long l=Long.valueOf(“123”).longValue()
说明:上例是将一个字符串转化成一个Long对象,然后再调用这个对象的longValue()方法返回其对应的long数值。
eg6: char=Character.valueOf(“123”).charValue()
说明:上例是将一个字符串转化成一个Character对象,然后再调用这个对象的charValue()方法返回其对应的char数值。


1将字串 String 转换成整数 int

1) int i = Integer.parseInt(my_str); 
2) int i = new Integer(my_str).intValue();

3) int i = Integer.valueOf(my_str).intValue();

: 字串转成 Double, Float, Long 的方法大同小异.


2 
将整数 int 转换成字串 String 

1) String s = String.valueOf(i);

2) String s = Integer.toString(i);

3) String s = "" + i;

: Double, Float, Long 转成字串的方法大同小异.


这是一个例子,说的是JAVA中数据数型的转换.供大家学习引

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);
   }


}

原创粉丝点击