Rhine_danji_ys 2022-11-04 21:58 采纳率: 66.7%
浏览 24
已结题

java的list.subLIst(start,end)方法结果不能直接转换为ArrayList<T>

将ArrayList列表中某范围对象取出,选用subList(int fromIndex, int toIndex) 方法,用ArrayList接收,报类型转换异常,java.util.ArrayList$SubList不能转换为ArrayList,为什么啊?

     
        ArrayList<Type> resPage = (ArrayList<Type>) types.subList(5, 10);
java.lang.ClassCastException: java.util.ArrayList$SubList cannot be cast to java.util.ArrayList
    at com.hyg.membership.component.impl.TypeServiceImpl.findTypePages(TypeServiceImpl.java:209) ~[classes/:na]
    at com.hyg.membership.component.impl.TypeServiceImpl$$FastClassBySpringCGLIB$$f26a7431.invoke(<generated>) ~[classes/:na]
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) ~[spring-core-5.3.22.jar:5.3.22]
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) ~[spring-aop-5.3.22.jar:5.3.22]
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) ~[spring-aop-5.3.22.jar:5.3.22]
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) ~[spring-aop-5.3.22.jar:5.3.22]
    at com.hyg.membership.component.impl.TypeServiceImpl$$EnhancerBySpringCGLIB$$feaa67c.findTypePages(<generated>) ~[classes/:na]

但是直接用List接收数据然后转换为ArrayList缺不会报错,为什么这么设计,是有什么玄奥没被参透吗?(jdk1.8.45)

 List<Type> resPage = types.subList(start,end);
ArrayList<Type> data = resPage;
  • 写回答

1条回答 默认 最新

  • 涝山道士 2022-11-04 22:17
    关注
    1. 这个方法在List中定义是下面这样的,不过若返回的实际类型是ArrayList的话,还是可以强制转型的。

      List<E> subList(int fromIndex, int toIndex)
      
    2. 不过,ArrayList中这个方法的实际返回类型为Sublist,它是AbstractList的子类,而非ArrayList的子类,所以无法转型。

      public List<E> subList(int fromIndex, int toIndex) {
       subListRangeCheck(fromIndex, toIndex, size);
       return new SubList(this, 0, fromIndex, toIndex);
      }
      
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

问题事件

  • 系统已结题 11月13日
  • 已采纳回答 11月5日
  • 修改了问题 11月4日
  • 修改了问题 11月4日
  • 展开全部

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?