摘要:
我知道Java枚举会被编译成一个包含私有构造参数和一堆静态方法的类,当去比较两个枚举的时候,总是使用equals()方法,例如: public useEnums(SomeEnum a) { if(a.equals(SomeEnum.SOME_ENUM_VALUE)) { ... } ... }参考 阅读全文
摘要:
1、遍历集合并得到新对象 List<RpcCustomerImageDTO> customerImgList= customerImageList.stream().filter(a -> a.getImgKey() !=null ). collect(Collectors.toList()); 2 阅读全文
摘要:
1、MySQL如何设计索引更高效 https://www.cnblogs.com/aobing/p/14260558.html 2、大厂怎么进行SQL优化 https://www.cnblogs.com/aobing/p/13983556.html 阅读全文
摘要:
查看锁表语句 show OPEN TABLES where In_use > 0; 找到锁表的进程 show processlist; 删除锁表进程 kill 51045123; 阅读全文