简介 将项目中用到的类型转换做个记录. 详细代码 @Component public class TypeUtil { // [start]字符串转各种格式 // 字符串转日期(格式:"yyyyMMdd") public static Date StrToDateFirst(String str) { DateFormat format = new SimpleDateFormat("yyyyMMdd"); Date date = null; try { date…
1.java四大特性:抽象.继承.封装,多态 构造函数: http://blog.csdn.net/qq_33642117/article/details/51909346 2.java数据基本类型:byte short int long double float char boolean, 包装类型:Boolean,Character,Byte,Short,Integer,Long,Float,Double Integer :整型变量的值在-128-127之间时不会new新的对象…