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

溫馨提示×

溫馨提示×

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

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

怎么在Java中實現一個分頁遍歷功能

發布時間:2021-03-02 16:27:51 來源:億速云 閱讀:499 作者:Leah 欄目:開發技術

怎么在Java中實現一個分頁遍歷功能?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

1. 數據查詢模擬

首先mock一個分頁獲取數據的邏輯,直接隨機生成數據,并且控制最多返回三頁

public static int cnt = 0;

private static List<String> randStr(int start, int size) {
  ++cnt;
  if (cnt > 3) {
    return Collections.emptyList();
  } else if (cnt == 3) {
    cnt = 0;
    size -= 2;
  }

  System.out.println("======================= start to gen randList ====================");
  List<String> ans = new ArrayList<>(size);
  for (int i = 0; i < size; i++) {
    ans.add((start + i) + "_" + UUID.randomUUID().toString());
  }
  return ans;
}

2. 基本實現方式

針對這種場景,最常見也是最簡單直觀的實現方式

  • while死循環

  • 內部遍歷

private static void scanByNormal() {
  int start = 0;
  int size = 5;
  while (true) {
    List<String> list = randStr(start, size);
    for (String str : list) {
      System.out.println(str);
    }

    if (list.size() < size) {
      break;
    }
    start += list.size();
  }
}

3. 迭代器實現方式

接下來介紹一種更有意思的方式,借助迭代器的遍歷特性來實現,首先自定義一個通用分頁迭代器

public static abstract class MyIterator<T> implements Iterator<T> {
  private int start = 0;
  private int size = 5;

  private int currentIndex;
  private boolean hasMore = true;
  private List<T> list;

  public MyIterator() {
  }

  @Override
  public boolean hasNext() {
    if (list != null && list.size() > currentIndex) {
      return true;
    }

    // 當前的數據已經加載完畢,嘗試加載下一批
    if (!hasMore) {
      return false;
    }

    list = load(start, size);
    if (list == null || list.isEmpty()) {
      // 沒有加載到數據,結束
      return false;
    }

    if (list.size() < size) {
      // 返回條數小于限制條數,表示還有更多的數據可以加載
      hasMore = false;
    }

    currentIndex = 0;
    start += list.size();
    return true;
  }

  @Override
  public T next() {
    return list.get(currentIndex++);
  }

  public abstract List<T> load(int start, int size);
}

接下來借助上面的迭代器可以比較簡單的實現我們的需求了

private static void scanByIterator() {
  MyIterator<String> iterator = new MyIterator<String>() {
    @Override
    public List<String> load(int start, int size) {
      return randStr(start, size);
    }
  };

  while (iterator.hasNext()) {
    String str = iterator.next();
    System.out.println(str);
  }
}

那么問題來了,上面這種使用方式比前面的優勢體現再哪兒呢?

雙層循環改為單層循環

接下來接入重點了,在jdk1.8引入了函數方法 + lambda之后,又提供了一個更簡潔的使用姿勢

public class IteratorTestForJdk18 {

  @FunctionalInterface
  public interface LoadFunc<T> {
    List<T> load(int start, int size);
  }

  public static class MyIterator<T> implements Iterator<T> {
    private int start = 0;
    private int size = 5;

    private int currentIndex;
    private boolean hasMore = true;
    private List<T> list;
    private LoadFunc<T> loadFunc;

    public MyIterator(LoadFunc<T> loadFunc) {
      this.loadFunc = loadFunc;
    }

    @Override
    public boolean hasNext() {
      if (list != null && list.size() > currentIndex) {
        return true;
      }

      // 當前的數據已經加載完畢,嘗試加載下一批
      if (!hasMore) {
        return false;
      }

      list = loadFunc.load(start, size);
      if (list == null || list.isEmpty()) {
        // 沒有加載到數據,結束
        return false;
      }

      if (list.size() < size) {
        // 返回條數小于限制條數,表示還有更多的數據可以加載
        hasMore = false;
      }

      currentIndex = 0;
      start += list.size();
      return true;
    }

    @Override
    public T next() {
      return list.get(currentIndex++);
    }
  }
}

在jdk1.8及之后的使用姿勢,一行代碼即可

private static void scanByIteratorInJdk8() {
  new MyIterator<>(IteratorTestForJdk18::randStr)
    .forEachRemaining(System.out::println);
}

看完上述內容,你們掌握怎么在Java中實現一個分頁遍歷功能的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

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

AI

新乐市| 阿拉善右旗| 全椒县| 贵定县| 岳池县| 图片| 黄平县| 石门县| 凤台县| 林甸县| 库尔勒市| 太保市| 当阳市| 邓州市| 昌江| 阜宁县| 稻城县| 新竹市| 望江县| 雷波县| 阿瓦提县| 安达市| 鄂州市| 牟定县| 岑巩县| 措勤县| 华坪县| 澎湖县| 会泽县| 饶平县| 潍坊市| 深圳市| 漳浦县| 鹤岗市| 丁青县| 顺昌县| 镇赉县| 庐江县| 青海省| 株洲县| 嘉荫县|