gpt4 book ai didi

java - 类型不匹配 : cannot convert from void to ArrayList

转载 作者:搜寻专家 更新时间:2023-11-01 04:03:00 25 4
gpt4 key购买 nike

为什么我会收到此代码的错误?我有正确的 ArrayList 和 Collections 导入

private ArrayList<String> tips;

public TipsTask(ArrayList<String> tips){
this.tips = Collections.shuffle(tips);
}

最佳答案

Collections.shuffle(tips);

Collections.shuffle 返回 void,您不能将 void 分配给 ArrayList

例如你可以这样做:

    Collections.shuffle(tips);
this.tips = tips;

关于java - 类型不匹配 : cannot convert from void to ArrayList<String>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17644454/

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