gpt4 book ai didi

Java 方法参数不适用

转载 作者:行者123 更新时间:2023-11-29 08:21:33 25 4
gpt4 key购买 nike

<分区>

首先,抱歉没有更好的标题。希望有更多 Java 经验的人能够将其更改为更合适的内容。

所以我遇到了以下异常:

The method copyPartialMatches(String, Iterable, T) in the type StringUtil is not applicable for the arguments (String, String[], List)

documentation对于此方法说明:

Parameters:
token - String to search for
originals - An iterable collection of strings to filter.
collection - The collection to add matches to

我的代码:

public class TabHandler implements TabCompleter {
private static final String[] params = {"help", "menu", "once", "repeat", "infinite", "cancel"};

@Override
public List<String> onTabComplete(CommandSender sender, Command command, String alias, String[] args) {
final List<String> completions = new ArrayList<>();
StringUtil.copyPartialMatches(args[0], params, completions);

Collections.sort(completions);
return completions;
}
}

我相当确定问题出在 completions 列表上。也许这不是一个有效的集合?我的理解是,但现在我在这里不知所措。所以希望你们能帮助我。

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