常用类及其方法应用
Posted 勇往直前
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了常用类及其方法应用相关的知识,希望对你有一定的参考价值。
Math类(计算)、Arrays类(排序等)、BigInteger类(精确整数)、BigDecimal类(精确浮点数)
----------------------------------------------------------------------------------------------------------------
Integer类
将String类型转换为int类型:
(方式1): int i=Integer.parseInt(s);
(方式2): String-->Integer-->int
Integer.valueOf(s).intValue();
将int类型转换为String类型
String s=String.valueOf(i);
--------------------------------------------------------------------------------------------
Character类
判断功能:
1. isDigit(char ch): 是否是数字
2. isUpperCase(char ch):是否是大写
3. isLowerCase(char ch):是否是小写
----------------------------------------------------------------------------------
System类
System.exit(0):正常终止虚拟机;
System.currentTimeMillis():主要用于记录一段代码运行的时间
-------------------------------------------------------------------------------------
DateFormat类
一、 format(Date d):把Date类型转换为String类型
实现代码:new SimpleDateFormat(format).format(d);
二、 parse(String date):把String类型转换为Date类型
实现代码:new SimpleDateFormat(format).parse(date);
----------------------------------------------------------------------------------------
SimpleDateFormat:
构造方法:Public SimpleDateFormat(String format)
其中format就是转换的格式
ps:SimpleDateFormat extends DateFormat
--------------------------------------------------------------------------------------
Date:
1.从一个Date得到毫秒值(可以用作id)
long time=new Date().getTime();
2.从一个毫秒值转换为Date
Date d1=d.setTime(time);
以上是关于常用类及其方法应用的主要内容,如果未能解决你的问题,请参考以下文章