博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java常用类型转换
阅读量:6570 次
发布时间:2019-06-24

本文共 767 字,大约阅读时间需要 2 分钟。

hot3.png

string->byte  Byte static byte parseByte(String s)  byte->string  Byte static String toString(byte b)  char->string  Character static String to String (char c)  string->Short  Short static Short parseShort(String s)  Short->String  Short static String toString(Short s)  String->Integer  Integer static int parseInt(String s)  Integer->String  Integer static String tostring(int i)  String->Long  Long static long parseLong(String s)  Long->String  Long static String toString(Long i)  String->Float  Float static float parseFloat(String s)  Float->String  Float static String toString(float f)  String->Double  Double static double parseDouble(String s)  Double->String  Double static String toString(Double d)

转载于:https://my.oschina.net/dlpinghailinfeng/blog/122033

你可能感兴趣的文章
多线程IO模型
查看>>
好文章 列表
查看>>
各地都在搞大数据,你的家乡有啥特色没——解读2017年地方政府大数据报告
查看>>
Android安全测试工具Drozer coverity fortify
查看>>
android中的LaunchMode详解----四种加载模式
查看>>
socket编码问题
查看>>
数组中后面元素与前面元素的最大差值
查看>>
二维高斯函数(中间暗)、正条纹图与环形条纹图
查看>>
Linux常用命令大全
查看>>
使用Apriori算法进行关联分析
查看>>
vfs:结构体对象
查看>>
poj 3133 Manhattan Wiring
查看>>
read、readline和readlines
查看>>
oracle数据库常用方法详解。
查看>>
Bzoj 2818: Gcd 莫比乌斯,分块,欧拉函数,线性筛
查看>>
Centos下配置单元测试工具gtest
查看>>
day19(乱码解决方案)
查看>>
PHP程序员的13个好习惯
查看>>
js计算两个时间相差天数
查看>>
怎么过滤JSON数组中反斜杠“\”,反序列化
查看>>