q61777582 2015-10-13 06:46 采纳率: 0%
浏览 8713
已结题

List提示Index: 0, Size: 0

代码如下

 List<ExpInfo> expInfos = expInfoService
                .getRandom(request.getParameter("all") == null ? "" : request
                        .getParameter("all"));
        List<ExpInfos> expinfoList = new ArrayList<ExpInfos>();
        for(int i = 0 ; i < expInfos.size() ; i ++){
            expinfoList.get(i).setExpId(expInfos.get(i).getExpId());
            expinfoList.get(i).setExpName(expInfos.get(i).getExpName());
            expinfoList.get(i).setExpSex(expInfos.get(i).getExpSex());
            expinfoList.get(i).setExpAge(expInfos.get(i).getExpAge());
            expinfoList.get(i).setCategoryId(expInfos.get(i).getCategoryId());
            expinfoList.get(i).setCategoryName(expInfos.get(i).getCategoryName());
            expinfoList.get(i).setExpRemark(expInfos.get(i).getExpRemark());
            expinfoList.get(i).setCheck(expInfos.get(i).getCheck());
        }

可是为什么提示超出索引了啊?

  • 写回答

9条回答 默认 最新

  • s364136299 2015-10-13 06:57
    关注

    是expinfoList超出索引了 你新new的一个list ,size=0 ; expinfoList.get(i).setExpId(expInfos.get(i).getExpId()); 这里超出了索引!

    评论

报告相同问题?