摘要:
package test; import java.util.ArrayList; import java.util.List; import java.util.stream.Collectors; public class ListAndList { /** * java8实现两个list取交集 阅读全文
摘要:
当我们使用eclipse时,想要看一个类的详细信息时,经常会遇到以下界面: 问题产生的原因很简单,就是eclipse没有找到相关的源文件(.java)。我们只需要将源文件的位置告诉eclipse就可以了。具体操作见下:1. 点击”Attach Source…”,弹出Source Attachment 阅读全文
摘要:
//函数接口 package interfaces; @FunctionalInterface public interface MyFunction2<T,R> { public R getValue(T t,T t2); } //实际实现调用 package lamdaTest; import 阅读全文
摘要:
//函数式接口package lamdaTest; @FunctionalInterface public interface MyFunction { public Integer getValue(Integer num); } //具体实现调用 /** * 执行实现方法 */ @Test pu 阅读全文
摘要:
select * from my_product where product_type = 1 and status = 36 and TIMESTAMPDIFF(DAY, NOW(), date_add(eff_time, interval 30 day)) = #{days,jdbcType=I 阅读全文
摘要:
最近项目中需要对list集合中的重复值进行处理,大部分是采用两种方法,一种是用遍历list集合判断后赋给另一个list集合,一种是用赋给set集合再返回给list集合。但是赋给set集合后,由于set集合是无序的,原先的顺序就打乱了。所以我又想着能不能用set的特性进行去重又不打乱顺序呢?试了一下, 阅读全文
摘要:
很多小伙伴们说这个软件使用一个月就不能使用了。原因是需要购买激活码的,一次激活就可以使用了。下面来看看激活教程吧!!! 第一步:看到这个页面点击Buy ,有的可能出现不一样 第二步: 第三步:点击ok,这样就完成了 阅读全文
摘要:
摘抄学习试用第一种:Comparable 排序接口 若一个类实现了Comparable接口,就意味着“该类支持排序”。 假设“有一个List列表(或数组),里面的元素是实现了Comparable接口的类”,则该List列表(或数组)可以通过 Collections.sort(或 Arrays.sor 阅读全文
摘要:
<select id="selctBeanInfo" resultType="com.cn.UserInfo" parameterType="java.lang.Integer"> select * from user_info where status = 0 and TIMESTAMPDIFF( 阅读全文
摘要:
Date to LocalDateTime: Date currDate = new Date(); LocalDateTime ldt = currDate.toInstant().atZone(ZoneId.systemDefault()).toLocalDateTime(); System.o 阅读全文