摘要: 分析: 键盘录入数据来指定范围:[start,end] String start =sc.next(); String end=sc.next(); 实现代码: public static int getRoundomNum(int start, int end){ //(int)(Math.ran 阅读全文
posted @ 2017-08-09 23:40 scwyfy 阅读(414) 评论(0) 推荐(0) 编辑
摘要: Math类(计算)、Arrays类(排序等)、BigInteger类(精确整数)、BigDecimal类(精确浮点数) Integer类 将String类型转换为int类型: (方式1): int i=Integer.parseInt(s); (方式2): String-->Integer-->in 阅读全文
posted @ 2017-08-09 23:25 scwyfy 阅读(168) 评论(0) 推荐(0) 编辑
摘要: 一、Date-->String :格式化过程 1. DateFormat :String format(Date d) 2.SimpleDateFormat是继承DateFormat(抽象类)的子类,可以创建对象; Date转换为String的功能函数如下: public static String 阅读全文
posted @ 2017-08-09 22:28 scwyfy 阅读(322) 评论(0) 推荐(0) 编辑
摘要: \d:匹配阿拉伯数字 \D: 匹配非阿拉伯数字(\d的补集) \w:匹配阿拉伯数组、字母、下划线 \W:匹配被\w排除在外的字符(\w的补集) \s: 匹配空白字符(空格、制表符、换行等) \S: 匹配被\s排除在外的字符(\s的补集) yo+: o出现一次或多次 [yY][oO]+: y或Y出现一 阅读全文
posted @ 2017-08-09 15:48 scwyfy 阅读(162) 评论(0) 推荐(0) 编辑