lamuda表达式 list移除空元素_删除List所有元素都为空的行数据

在查询过程中,可能会遇到查询出行数据都为null的情况,如下图所示:

b59f7e8f9e553a65b769ee3fad78db96.png

我们可以采用以下的方法删除全为空的行数据

1. 使用原生Java删除空行

@Test

public void testRemoveNullElement() {

List list = new ArrayList<>(Arrays.asList(null, 1, null));

while (list.remove(null));

assertThat(list, hasSize(1));

}

debug结果:

8eb161083de6bbcecfe1a692bda2fa32.png

2. 使用Apache Commons Collections删除空行

@Test

public void testRemoveNullElementByApache() {

List list = new ArrayList<>(Arrays.asList(null, 1, 2, null, 3, null));

CollectionUtils.filter(list, PredicateUtils.notNullPredicate());

assertThat(list, hasSize(3));

}

其中,filter的具体实现方法为:

public static boolean filter(final Iterable collection, final Predicate super T> predicate) {

boolean result = false;

if (collection != null && predicate != null) {

for (final Iterator it = collection.iterator(); it.hasNext();) {

if (!predicate.evaluate(it.next())) {

it.remove();

result = true;

}

}

}

return result;

}

3. 使用java8的lambdas表达式删除空行

@Test

public void testRemoveNullElementByLambdas() {

List list = new ArrayList<>(Arrays.asList(null, 1, 2, null, 3, null));

list.removeIf(Objects::isNull);

assertThat(list, hasSize(3));

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值