欢迎来到天天文库
浏览记录
ID:8926402
大小:21.50 KB
页数:3页
时间:2018-04-12
《java各种数字类型与字符串型的转换》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库。
1、java各种数字类型与字符串型的转换各种数字类型转换成字符串型: 法一:Strings=String.valueOf(value);//其中value为任意一种数字类型。 法二:Stringaa=1+"";字符串型转换成各种数字类型: Strings="169"; byteb=Byte.parseByte(s); shortt=Short.parseShort(s); inti=Integer.parseInt(s); longl=Long.parseLong(s); Floatf=Float.parseFloat(s); Doubled=Double.parseDouble(s); 数字类
2、型与数字类对象之间的转换: byteb=169; Bytebo=newByte(b); b=bo.byteValue(); shortt=169; Shortto=newShort(t); t=to.shortValue(); inti=169; b=bo.byteValue(); shortt=169; Shortto=newShort(t); t=to.shortValue(); inti=169; Integerio=newInteger(i); i=io.intValue(); longl=169; Longlo=newLong(l); l=lo.longValue(); float
3、f=169f; Floatfo=newFloat(f); f=fo.floatValue(); doubled=169f; DoubledObj=newDouble(d); d=dObj.doubleValue();
此文档下载收益归作者所有