JAVA集合框架工具类自定义Collections集合方法
程序员文章站
2024-03-04 15:53:35
项目中有需要多次统计 某些集合中 的某个属性值,所以考虑封装一个方法,让其其定义实现计算方式。 话不多说,看代码:
1、封装的自定义集合工具类:collections...
项目中有需要多次统计 某些集合中 的某个属性值,所以考虑封装一个方法,让其其定义实现计算方式。 话不多说,看代码:
1、封装的自定义集合工具类:collectionscustom
package com.test.util; import java.util.collection; import org.apache.commons.collections.collectionutils; /** * 自定义集合处理类 */ public class collectionscustom { /** * 将传入的collection内对象进行计算后得出结果 * @param original 计算前collection * @param reducefunction 计算方式 * @param initvalue 计算结果初始值 * @param <input> collection对象类型 * @param <output> 结果类型 * @return */ public static <input, output> output reduce(collection<input> original, output initvalue, reducefunction<input, output> reducefunction) { output result = initvalue; if (collectionutils.isempty(original)) { return result; } if (reducefunction == null) { return result; } for (input input : original) { result = reducefunction.apply(input, result); } return result; } /** * 自定义计算接口 * @param <input> * @param <result> */ public interface reducefunction<input, result> { result apply(input input, result lastresult); } }
2、测试类testcollections
package com.test; import java.math.bigdecimal; import java.util.arrays; import java.util.list; import com.test.util.collectionscustom; public class testcollection { private static list<user> list = arrays.aslist( new user("张三", bigdecimal.valueof(35.6), 18), new user("李四", bigdecimal.valueof(85), 30), new user("赵六", bigdecimal.valueof(66.55), 25)); public static void main(string[] args) { //统计集合内分数之和 testtotalscore(); //统计集合内年龄之和 testtotalage(); } private static void testtotalscore(){ //统计集合内分数之和 bigdecimal totalscore = collectionscustom.reduce(list, bigdecimal.zero, new collectionscustom.reducefunction<user, bigdecimal>() { @override public bigdecimal apply(user input, bigdecimal lastresult) { // todo auto-generated method stub return lastresult.add(input.getscore()); } }); system.out.println("总共分数:" + totalscore); } private static void testtotalage(){ //统计集合内年龄之和 integer totalage = collectionscustom.reduce(list, 0, new collectionscustom.reducefunction<user, integer>() { @override public integer apply(user input, integer lastresult) { // todo auto-generated method stub return lastresult += input.getage(); } }); system.out.println("总共年龄:" + totalage); } static class user{ private string username; //姓名 private bigdecimal score;//分数 private integer age; public string getusername() { return username; } public void setusername(string username) { this.username = username; } public bigdecimal getscore() { return score; } public void setscore(bigdecimal score) { this.score = score; } public integer getage() { return age; } public void setage(integer age) { this.age = age; } public user(string username, bigdecimal score, integer age) { super(); this.username = username; this.score = score; this.age = age; } public user() { // todo auto-generated constructor stub } } }
3、测试输出结果:
总共分数:187.15
总共年龄:73
这里如果传入的是封装类型integer
等,最好自己做下非空处理。相信高质量的封装代码能为你自己加分的!
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对的支持。如果你想了解更多相关内容请查看下面相关链接
下一篇: Android获取验证码倒计时显示效果
推荐阅读
-
JAVA集合框架工具类自定义Collections集合方法
-
JAVA集合框架工具类自定义Collections集合方法
-
java集合辅助类 Collections、Arrays 博客分类: java集合 ArraysCollectionsHashCode
-
Java常用工具类—集合排序
-
java 集合之实现类ArrayList和LinkedList的方法
-
java中List集合及其实现类的方法详解
-
荐 Java——集合中的Map接口通过HashMap类实现一些常用的方法
-
【Java】利用json工具类,传入字段名,获取集合中的对象属性值集合
-
集合 集合框架 *父接口(Collection) Collections工具类
-
Java中Collections集合工具类