真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

怎么在Java中實(shí)現(xiàn)一個(gè)分頁遍歷功能-創(chuàng)新互聯(lián)

怎么在Java中實(shí)現(xiàn)一個(gè)分頁遍歷功能?相信很多沒有經(jīng)驗(yàn)的人對(duì)此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個(gè)問題。

成都創(chuàng)新互聯(lián)專注于企業(yè)營(yíng)銷型網(wǎng)站建設(shè)、網(wǎng)站重做改版、文成網(wǎng)站定制設(shè)計(jì)、自適應(yīng)品牌網(wǎng)站建設(shè)、H5網(wǎng)站設(shè)計(jì)商城建設(shè)、集團(tuán)公司官網(wǎng)建設(shè)、外貿(mào)網(wǎng)站建設(shè)、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁設(shè)計(jì)等建站業(yè)務(wù),價(jià)格優(yōu)惠性價(jià)比高,為文成等各大城市提供網(wǎng)站開發(fā)制作服務(wù)。

1. 數(shù)據(jù)查詢模擬


首先mock一個(gè)分頁獲取數(shù)據(jù)的邏輯,直接隨機(jī)生成數(shù)據(jù),并且控制最多返回三頁


public static int cnt = 0;

private static List 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 ans = new ArrayList<>(size);
  for (int i = 0; i < size; i++) {
    ans.add((start + i) + "_" + UUID.randomUUID().toString());
  }
  return ans;
}

2. 基本實(shí)現(xiàn)方式

針對(duì)這種場(chǎng)景,最常見也是最簡(jiǎn)單直觀的實(shí)現(xiàn)方式

  • while死循環(huán)

  • 內(nèi)部遍歷

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

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

3. 迭代器實(shí)現(xiàn)方式

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


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

  private int currentIndex;
  private boolean hasMore = true;
  private List list;

  public MyIterator() {
  }

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

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

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

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

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

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

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

接下來借助上面的迭代器可以比較簡(jiǎn)單的實(shí)現(xiàn)我們的需求了


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

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

那么問題來了,上面這種使用方式比前面的優(yōu)勢(shì)體現(xiàn)再哪兒呢?

雙層循環(huán)改為單層循環(huán)

接下來接入重點(diǎn)了,在jdk1.8引入了函數(shù)方法 + lambda之后,又提供了一個(gè)更簡(jiǎn)潔的使用姿勢(shì)


public class IteratorTestForJdk18 {

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

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

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

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

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

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

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

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

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

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

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


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

看完上述內(nèi)容,你們掌握怎么在Java中實(shí)現(xiàn)一個(gè)分頁遍歷功能的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!


網(wǎng)站題目:怎么在Java中實(shí)現(xiàn)一個(gè)分頁遍歷功能-創(chuàng)新互聯(lián)
分享路徑:http://weahome.cn/article/docjso.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部