我正在尝试通过执行将 int 类型的数组转换为 List
List<Integer> endingRoutesBusStopsList = Arrays.asList(endingRoutesBusStops);
但由于某种原因,我不断收到错误消息
Type mismatch: cannot convert from List<int[]> to List<Integer>
我不明白问题是什么。
我知道做
List<int[]> endingRoutesBusStopsList = Arrays.asList(endingRoutesBusStops);
将解决错误,但我不能以我想要的方式使用它。
有人有想法么?