gpt4 book ai didi

Java - 类型不匹配 : cannot convert from ImmutableList to ImmutableList
转载 作者:太空宇宙 更新时间:2023-11-04 10:17:13 25 4
gpt4 key购买 nike

我遇到了这个错误: Type mismatch: cannot convert from ImmutableList<Object> to ImmutableList<String>

这是错误的代码:在线 COMPLETIONS = ImmutableList.of((Object)"all");

public class FactionWithdrawArgument extends CommandArgument
{
private static final ImmutableList<String> COMPLETIONS;
private final HCF plugin;

public FactionWithdrawArgument(final HCF plugin) {
super("withdraw", "Withdraws money from the faction balance.", new String[] { "w" });
this.plugin = plugin;
}

public String getUsage(final String label) {
return '/' + label + ' ' + this.getName() + " <all|amount>";
}

static {
COMPLETIONS = ImmutableList.of((Object)"all");
}
}

我不知道这个。这是bukkit的一个类

我需要帮助如果这很容易。但我不知道

最佳答案

我不相信你能做到这一点。一件事你已经确定了。其次不可变对象(immutable对象)如果一个对象的状态在构造后不能改变,则该对象被认为是不可变的。

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

25 4 0