gpt4 book ai didi

java - 复制数组的值

转载 作者:行者123 更新时间:2023-12-01 11:52:10 25 4
gpt4 key购买 nike

我正在尝试将 pos 的值甚至索引值复制到单词(一个数组)。我在这段代码中得到了一个 nullpointerexpection

    for (String a : token)
{
temp = temp + " " + a;
pos = a.split("[_\\s]+");

}
for (int i=0;i<pos.length;i=i+2)
{
int c=0;
words[c]=pos[i]; //in this line
c++;
}

最佳答案

鉴于 NullPointerException,words 很可能为 null。当你分配它时,你需要确保它足够大,否则你会得到一个ArrayIndexOutOfBoundsException。

关于java - 复制数组的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28710391/

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