10JAVA基础-常用类02

Posted hatcher-h

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了10JAVA基础-常用类02相关的知识,希望对你有一定的参考价值。

Arrays

工具类,构造方法私有
//将数组转变为字符串
String str = Arrays.toString(int[] value);
//对于原数组进行排序,升序
Arrays.sort(int[] arr);

基本数据类型包装类

包装类 数据类型
Byte byte
Short short
Integer int
Long long
Float float
Double double
Character char
Boolean boolean

Integer与int互相转换

//int --->Integer
Integer inte = new Integer(int value);
Integer inte2 = new Integer(String value);//此处的String类型数据必须由数字组成
//Integer ---> int
int i = inte2.intValue();

int和String转换

//int --->String
String s = String.valueOf(int value);
//String ---> int
int i = Integer.ParseInt(String value);

JDK5以后新特性

//自动装箱
Integer inte = 10;
//执行过程
Integer inte = new Integer(10);
//自动拆箱
inte += 20;
//执行过程
inte = inte +20 // 自动拆箱,将inte 转换为int 与20相加,再自动装箱成Integer类型
inte = Integer.valueoOf(inte.intValue() +20);

Date

//构造方法
Date d1 = new Date();
Date d2 = new Date(long value);
//
long date1 = d1.getTime();//获取当前时间戳
long date2 = d2.getTime();//获取指定时间的时间戳
d1.setTime(long value);//设置时间

SimpleDateFormat

//date --->String
Date date = new Date();
SimpleDateFormat sft = new SimpleDateFormat(String format);//format :格式
String sDate = sft.format(date);
//String --->date
String date = "2010-10-10";
SimpleDateFormat sft = new SimpleDateFormat(String format);//format :格式
Date dDate = stf.parse(date);

以上是关于10JAVA基础-常用类02的主要内容,如果未能解决你的问题,请参考以下文章

java代码在片段活动中不起作用

179 01 Android 零基础入门 03 Java常用工具类02 Java包装类 03 包装类总结 01 Java中的包装类总结

# Java 常用代码片段

# Java 常用代码片段

Java基础常用包装类

Java基础常用包装类