gpt4 book ai didi

java - 字符串数组的 ArrayList

转载 作者:行者123 更新时间:2023-12-01 08:48:17 24 4
gpt4 key购买 nike

String s[] = {"a,b,c", "d,e,f"};

我想将每个字符串拆分为子项数组。所以我最终得到这样的伪代码: [['a', 'b', 'c'], ['d', 'e', 'f']]

String arr[] = {"a,b,c", "d,e,f"};
List<String[]> groups = new ArrayList<String>();

for(String s : arr) {
groups.add(s.split(","));
}

希望上述内容能够解决问题,但我认为我误解了我的列表声明?

最佳答案

是的,您的代码中有一个小错字。使用下面的代码。

        String arr[] = {"a,b,c", "d,e,f"};
List<String[]> groups = new ArrayList<String[]>();

for(String s : arr) {
groups.add(s.split(","));
}

关于java - 字符串数组的 ArrayList,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42547848/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com