欢迎来到天天文库
浏览记录
ID:57688463
大小:13.00 KB
页数:2页
时间:2020-09-01
《java 数字转 字符串 互相转换.doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、各种数字类型转换成字符串型:Strings=String.valueOf(value);//其中value为任意一种数字类型。字符串型转换成各种数字类型: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);数字类型与数字类对象之间的转换:byteb=169;By
2、tebo=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();floatf=169f;Floatfo=newFl
3、oat(f);f=fo.floatValue();doubled=169f;DoubledObj=newDouble(d);d=dObj.doubleValue();random()产生(0,1)之间的小数random()*10产生[0,10)之间的数,含小数int(random()*10)产生[0,9]之间的整数int(random()*10)+1产生[1,10]之间的整数int(random()*x)产生[0,x]之间的整数int(random()*x)+1产生[1,x+1]之间的整数classIntToString{publicstatic
4、voidmain(String[]args){inta=3;Strings=Integer.toString(a);System.out.println(s);}}
此文档下载收益归作者所有