摘要: Java常用类:Math类、Random类 Math Math 类不需要导入包就能直接使用 final 修饰类,Math类不能被继承 构造其私有化,不能创建 Math 类的对象 Math 内部所有的属性和方法都被 static 修饰(可以通过类名直接调用,无需创建对象) 常用方法 public cl 阅读全文
posted @ 2021-04-17 14:44 D..T 阅读(135) 评论(0) 推荐(0) 编辑
摘要: Java常用类:System类 System 系统类主要用于获取系统的属性数据和其他操作,构造方法私有 常用方法 方法名 说明 static void arraycopy(); 复制数组 static long currentTimeMillis(); 获取当前系统时间,返回的是毫秒值 static 阅读全文
posted @ 2021-04-17 11:22 D..T 阅读(153) 评论(0) 推荐(0) 编辑
摘要: Java常用类:时间日期 Date Date表示特定的瞬间,精确到毫秒 Date 类中的大部分方法都已经被 Calendar 类中的方法所取代 示例: import java.util.Date; public class Demo01 { public static void main(Strin 阅读全文
posted @ 2021-04-17 10:27 D..T 阅读(145) 评论(0) 推荐(0) 编辑