2022年3月21日

Arrays的一些基本使用

摘要: int[] arr = {10,30,50,99,44};//2. 排序的API(默认自动对数组元素进行了升序排序)Arrays.sort(arr);System.out.println(Arrays.toString(arr));//3.二分搜索技术(前提数组必须排好序才支持, 否则出bug)in 阅读全文

posted @ 2022-03-21 23:21 我要当程序源 阅读(39) 评论(0) 推荐(0)

入门的正则表达式

摘要: 验证手机号public class Demo3 { public static void main(String[] args) { //校验手机号码, 邮箱,电话号码 checkPhone(); System.out.println("程序结束"); } public static void ch 阅读全文

posted @ 2022-03-21 20:38 我要当程序源 阅读(28) 评论(0) 推荐(0)

3.21

摘要: public static void main(String[] args) { //计算出当前时间往后走1小时121秒之后的时间 //1. 得到当前时间毫秒值 Date d1 = new Date(); System.out.println(d1); //当前时间往后走1小时121s long t 阅读全文

posted @ 2022-03-21 14:25 我要当程序源 阅读(87) 评论(0) 推荐(0)

导航