java类型转换

1、基本类型和string数据互转

类型 包装类型 string int short long byte float double char boolean    
int Integer

int i=234;

String s=String.ValueOf(234);

s=Integer.ToSring(234);

s=""+i;

                   
short Short                      
long Long                      
byte Byte                      
float Float                      
double Double                      
char Character                      
boolean Boolean                      
string  

int i=Integer.parseInt("234");

i=Integer.valueof("234").intValue();

                 

2、基本类型和二进制编码之间的转换

 

posted on 2016-01-08 16:19  crhdyl  阅读(128)  评论(0编辑  收藏  举报

导航