-
Date类
Date d = new Date(); System.out,println(d); 运行结果: Wed Jun 11 09:22:30 CST 2014
使用format()方法将日期转换为指定格式的文本
Date d = new Date(); SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); String today = sdf.format(d); System.out.println(today);
使用parse()方法将文本转换为日期
String day = "2021年02月13日 00:00:00"; SimpleDateFormat df = SimpleDateFormat("yyyy-MM-dd HH:mm:ss); Date date = df.parse(day); System.out.println(date);
查看全部 -
基本类型转化为字符串的三种方法
1:使用包装类的toString()方法
2:使用string类的valueOf()方法
3:用一个空字符串加上基本类型,得到的就是基本类型数据对应的字符串
int c = 10; String str1 = Integer.toString(c); //方法1 String str2 = Integer.valueOf(c); //方法2 String str3 = c +""; // 方法3
将字符串转换为基本类型
1:调用包装类的parseXxx静态方法
2:调用包装类的valueOf()方法转换为基本类型的包装类,会自动拆箱
String str = "8"; int d = Integer.parseInt(str); //方法1 int e = Integer.valueOf(str); //方法2
查看全部 -
装箱:把基本类型转换成包装类,使其具有对象的性质,又可分为手动装箱和自动装箱
Integer x = new Integer(i); //手动装箱 Integer y = i //自动装箱
拆箱:和装箱相反,把包装类对象转换成基本类型的值,又可分为手动拆箱和自动拆箱
Integer j = new Integer(8); //定义一个Integer包装类对象值为8 int m = j.intValue(); //手动拆箱为int类型 int n = j; //自动拆箱为int类型
查看全部 -
包装类提供的两大类方法:
1:将本类型和其他本类型进行转换的方法
2:将字符串和本类型及包装类互相转换的方法
查看全部 -
StingBuilder类常用方法
查看全部 -
String 类的常用方法及其使用示例
查看全部 -
每次new一个字符串就是产生一个新的对象,即使两个字符串的内容相同,使用"=="比较时也为"false",如果只需比较内容是否相同,应该使用"equals()"方法
查看全部
举报
0/150
提交
取消