到目前为止的代码:
final String[] SOME_COMBINATION = new String[] {
"strA",
// just an example
("--(:" + 4 + "--B")};
final List<String[]> MY_LIST_OF_ARRAYS = List.of( // error here
SOME_COMBINATION
);
我在创建列表的行中得到一个错误(使用Eclipse):
#### Type mismatch: cannot convert from List\<String\> to List<String[]>
但是SOME_COMBINATION
在这里是一个字符串数组。我做错了什么?
数组的List
s是不可能的吗?(你可以,in general。)
1条答案
按热度按时间cig3rfwq1#
要创建字符串数组列表,请执行以下操作:
根据注解,
List
的包是java.util.List
,ArrayList
的包是java.util.ArrayList
。