08 2020 档案

摘要:Pattern p=Pattern.compile("\\d+"); Matcher m=p.matcher("22bb23"); m.find();//返回true Matcher m2=p.matcher("aa2223"); m2.find();//返回true Matcher m3=p.ma 阅读全文
posted @ 2020-08-05 18:25 real汪磊 阅读(227) 评论(0) 推荐(0)
摘要:1. stream() 函数式编程: a. filter: b. map c. sorted, reversed d. distinct forEach(e->e.setName(e.getName+"zsd")); 目的就是把list的每一项的name属性加上“”zsd“”字符串,变为一个新的值 阅读全文
posted @ 2020-08-05 00:44 real汪磊 阅读(133) 评论(0) 推荐(0)
摘要:Ctrl + shift + f 查找字符串 Ctrl + shift + n Ctrl + shift + r 替换 shift + shift 搜索任意文件 ctrl + E 最近的文件 ctrl + alt + c ctrl + alt + L 格式化代码 ctrl + alt + o 优化i 阅读全文
posted @ 2020-08-01 23:13 real汪磊 阅读(397) 评论(0) 推荐(0)