上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 81 下一页
摘要: s1.charAt(i)返回s1 i的第th个字符String. 假设此String仅包含小写字母(即'a'到'z'),s1.charAt(i)-'a'将字符'a'映射到索引0,将'b'映射到索引1,依此类推('z'映射到索引25) . a[s1.charAt(i)-'a']++; 递增与该字符对应 阅读全文
posted @ 2020-12-22 09:22 路要一步一步走 阅读(2461) 评论(1) 推荐(0) 编辑
摘要: 转载:https://database.51cto.com/art/201108/286325.htm 阅读全文
posted @ 2020-12-21 16:30 路要一步一步走 阅读(94) 评论(0) 推荐(0) 编辑
摘要: 第一种方法:提前return,减少else判断 优化前: private int handlePre1(boolean flag) { if (flag) { //do something } else { //do something return -1; } return 0; } 优化后: p 阅读全文
posted @ 2020-12-19 09:36 路要一步一步走 阅读(602) 评论(0) 推荐(0) 编辑
摘要: Mysql修改字段类型,修改字段名 mysql修改字段类型: --能修改字段类型、类型长度、默认值、注释 --对某字段进行修改 ALTER TABLE 表名 MODIFY COLUMN 字段名 新数据类型 新类型长度 新默认值 新注释; -- COLUMN可以省略 alter table table 阅读全文
posted @ 2020-12-18 09:37 路要一步一步走 阅读(9832) 评论(0) 推荐(0) 编辑
摘要: 转载:https://blog.csdn.net/sinat_38259539/article/details/107552865 阅读全文
posted @ 2020-12-17 11:29 路要一步一步走 阅读(1872) 评论(0) 推荐(0) 编辑
摘要: 转载:https://www.cnblogs.com/jpfss/p/8918315.html 阅读全文
posted @ 2020-12-17 11:23 路要一步一步走 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 转载:https://blog.csdn.net/u012326462/article/details/82081756 阅读全文
posted @ 2020-12-16 20:22 路要一步一步走 阅读(89) 评论(0) 推荐(0) 编辑
摘要: public static void main(String[] args) { String str1="2.30"; BigDecimal bd=new BigDecimal(str1); System.out.println(bd); } 阅读全文
posted @ 2020-12-16 19:38 路要一步一步走 阅读(7730) 评论(0) 推荐(0) 编辑
摘要: // 四舍五入 BigDecimal value = new BigDecimal(object.toString()).setScale(2,BigDecimal.ROUND_HALF_UP); // 不足两位小数补0 DecimalFormat decimalFormat = new Decim 阅读全文
posted @ 2020-12-16 19:22 路要一步一步走 阅读(13026) 评论(0) 推荐(0) 编辑
摘要: 转载:https://blog.csdn.net/m0_37044606/article/details/76461569 阅读全文
posted @ 2020-12-16 19:08 路要一步一步走 阅读(1648) 评论(0) 推荐(0) 编辑
上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 81 下一页