摘要: 1、集合 首先回顾一下ArrayList集合 public class Demo01 { public static void main(String[] args) { ArrayList<Person> arr=new ArrayList<Person>(); Person p=new Pers 阅读全文
posted @ 2021-01-29 16:40 公雪 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 1、System系统类 系统类不能创建对象,因为是系统不能随随便便访问 常见类成员方法,这些成员方法是被静态修饰的,所以可以直接通过类名直接调用 (1)currentTimeMillis() 创建当前系统日期时间的毫秒值,返回值是一个long类型 例:long time=System.current 阅读全文
posted @ 2021-01-29 11:51 公雪 阅读(222) 评论(0) 推荐(0) 编辑