gpt4 book ai didi

java - Set<字符串> getSet(字符串 s)

转载 作者:太空宇宙 更新时间:2023-11-04 14:23:15 25 4
gpt4 key购买 nike

我应该从我创建的 HashMap 中返回一个集合,并且应该位于 HashMap 中,但无论出于何种原因它当前无法工作。这是我的方法:

public Set<String> getSet(String s){
// returns the Set<String> that is associated with the String s
String stand = standardize(s);

if(check(stand)){

System.out.println(map.get(stand));

}

return null;

}

我们还有一个列表,但我将其转换为 map 。标准化将字符串更改为字母顺序,从而生成字符串。该字符串用作键。我正在尝试打印该集,但由于某种原因它不起作用。我究竟做错了什么?附:此代码是用 Java 编写的。

最佳答案

你试过吗

return map.get(stand);

关于java - Set<字符串> getSet(字符串 s),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26953889/

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