Loading...
1.1 Arrays基本使用Arrays是操作数组的工具类,它可以很方便的对数组中的元素进行遍历、拷贝、排序等操作。下面我们用代码来演示一下:遍历、拷贝、...
Steam流操作数组或集合的一个知识点public static void main(String[] args) { //认识steam...
Date类//1.创建日期对象 Date d = new Date(); System.out.println(d); //2. 拿到时间戳 ...
精度丢失//精度丢失 System.out.println(0.1+0.2); System.out.println(1.0-0.32); System....
//终止java虚拟机 System.exit(0); //获取系统当前戳 //1970.1.1 00:00:00 到当前时间的毫秒 System.c...
//绝对值 Math.abs(123); //向上取整 Math.ceil(1.1); //向下取整 Math.floor(2.3); //四舍五入 Ma...
//StringBuilder的创建 StringBuilder sb=new StringBuilder("java") //拼接...
基本数据类型对应的包装类(引用数据类型)byteByteshortShortintIntegerlongLongchatCharacterfloatFlo...
泛型//ArrayList<String> //集合内只能装String类型的数据 //泛型的作用 在编译阶段 检查集合的元素的类型 //在j...
枚举时一个特殊的类,他的格式是:public enum 枚举类名{ 枚举项1,枚举项2,枚举项3; }其实枚举项就表示枚举类的对象,只是这些对象在...