Java Object类型如何转换为其它类型呢?
下文笔者讲述Object类转换为其它类型的方法分享,如下所示:
Object转String
实现思路: 方式1:使用Object.toString()方法 方式2:使用String.valueOf(Object)方法 注意事项: 使用方式1时,需保证Object对象不为null
object转int
当object是byte,short,int,char类型生成的,直接强制转换即可 当object是字符串类型生成的,先把object转换为String类型的,再把String类型转换为int类型例:
String myInt="888888"; Object os=myInt; int b=Integer.parseInt((String)os);
object转Date
实现思路: 可以借助SimpleDateFormat可以将String转为Date,也可以Date转为String. .parse(String) 字符串转换为Date对象例:
SimpleDateFormat sdf=new SimpleDateFormat("yyyy-mm-dd"); String indate=sdf.format(date); Date indate=sdf.parse(String);
版权声明
本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。