91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何在JAVA中自定義Collections集合

發布時間:2021-06-08 17:06:23 來源:億速云 閱讀:220 作者:Leah 欄目:編程語言

如何在JAVA中自定義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

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

偃师市| 潜江市| 乌鲁木齐县| 祁东县| 囊谦县| 虎林市| 平山县| 永胜县| 吕梁市| 长顺县| 灵宝市| 稷山县| 田东县| 文安县| 枞阳县| 巫山县| 昌平区| 嫩江县| 即墨市| 湘潭市| 石屏县| 措美县| 花垣县| 棋牌| 靖安县| 天等县| 许昌市| 广州市| 松阳县| 清水河县| 林西县| 山阴县| 华阴市| 崇仁县| 宁波市| 密云县| 监利县| 锡林郭勒盟| 广灵县| 枣阳市| 纳雍县|