gpt4 book ai didi

java - 将数组分成字符串

转载 作者:行者123 更新时间:2023-12-01 08:06:49 26 4
gpt4 key购买 nike

ArrayList<String> stock_list = new ArrayList<String>();
stock_list.add("stock1");
stock_list.add("stock2");

我有这个ArrayList,我如何分成单独的字符串,以便我得到字符串a=“股票1”;字符串 b="stock2"?

最佳答案

Seperating an array into Strings

你误认为它是一个数组。不,它是ArrayList

ArrayList 实现了 List 并且它有一个方法 get()它将索引作为参数。只需用索引取回这些字符串即可。

Returns the element at the specified position in this list.

String a = stock_list.get(0);
String b = stock_list.get(1);

你应该考虑像这样声明你的ArrayList

List<String> stock_list = new ArrayList<String>();

这被称为 Programming with Interfaces

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

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