【机试题】编写一个Java函数,实现批量获取数据的功能

题目:编写一个Java函数,实现批量获取数据的功能(BService.get(List ids))。具体要求如下:

1)提供一个函数BService.get(List ids),支持最多传入100个id;

2)在BService.get((List ids)函数内部,需要将传入的id列表分批(每批10个id)进行调用AService.get(List ids)函数获取数据;

3)BService.get((List ids)函数需要返回所有批次获取的数据的合并结果,即一个包含所有数据的List;

java 复制代码
import java.util.ArrayList;
import java.util.List;

public class BService {
    private AService aService;

    public BService(AService aService) {
        this.aService = aService;
    }

    public List<Integer> get(List<Integer> ids) {
        List<Integer> result = new ArrayList<>();
        if (ids == null || ids.size() == 0) {
            return result;
        }
        int batchSize = 10;
        int batchCount = (ids.size() + batchSize - 1) / batchSize;
        for (int i = 0; i < batchCount; i++) {
            int start = i * batchSize;
            int end = Math.min(start + batchSize, ids.size());
            List<Integer> batchIds = ids.subList(start, end);
            List<Integer> batchResult = aService.get(batchIds);
            result.addAll(batchResult);
        }
        return result;
    }
}
相关推荐
BestandW1shEs5 分钟前
快速入门Flink
java·大数据·flink
奈葵12 分钟前
Spring Boot/MVC
java·数据库·spring boot
lozhyf15 分钟前
Go语言-学习一
开发语言·学习·golang
小小小小关同学19 分钟前
【JVM】垃圾收集器详解
java·jvm·算法
dujunqiu25 分钟前
bash: ./xxx: No such file or directory
开发语言·bash
爱偷懒的程序源27 分钟前
解决go.mod文件中replace不生效的问题
开发语言·golang
日月星宿~27 分钟前
【JVM】调优
java·开发语言·jvm
2401_8437852336 分钟前
C语言 指针_野指针 指针运算
c语言·开发语言
matlabgoodboy40 分钟前
代码编写java代做matlab程序代编Python接单c++代写web系统设计
java·python·matlab
Jacob程序员1 小时前
leaflet绘制室内平面图
android·开发语言·javascript