今天在完成一个小功能的时候,需要把存放在List中的数据转化成字符串数组。
想当然地用了List
的一个方法toArray()
,它的返回值是Object[]类型,于是用强制类型转换。代码如下:
public static String[] getDictValueList(String type){
List<Dict> DictList = getDictList(type);
List<String> DictValue = new ArrayList<>();
for (Dict dict : DictList){
DictValue.add(dict.getLabel());
}
return (String[])DictValue.toArray();
}
结果它报错了Ljava.lang.Object; cannot be cast to [Ljava.lang.String;
这个错误看起来有点奇怪,不知道前面的L和半个方括号是什么意思。
类型不匹配。
toArray()是一个抽象方法,返回Object[]类型,没有泛型,无法强转成String[]类型。要想让它返回对应的类型可以使用它的重载方法: <T> T[] toArray(T[] a);
ArrayList
的toArray方法。public <T> T[] toArray(T[] a)
返回一个按照正确的顺序包含此列表中所有元素的数组;返回数组的运行时类型就是指定数组的运行时类型。如果列表能放入指定的数组,则返回放入此列表元素的数组。否则,将根据指定数组的运行时类型和此列表的大小分配一个新的数组。return DictValue.toArray(new String[DictList.size()]);
Arrays
的asList
方法public static <T> List<T> asList(T... a)
List stooges = Arrays.asList("Larry", "Moe", "Curly");
String[] arr = new String[] {"1", "2"};
List list = Arrays.asList(arr);
一个错误,两个知识点。好好学习,天天向上。
2025 - 快车库 - 我的知识库 重庆启连科技有限公司 渝ICP备16002641号-10
企客连连 表单助手 企服开发 榜单123