gpt4 book ai didi

Java 相当于 Python 字典

转载 作者:太空宇宙 更新时间:2023-11-04 06:44:37 28 4
gpt4 key购买 nike

是否有更简洁的方法来执行此操作?

public void change(char x)
{
if(x == 'a')
{
return 'b';
}
else if(x == 'b')
{
return 'a';
}
else if(x == 't')
{
return 'r';
}
else if(x == 'r')
{
return 't';
}
return 'z';
}

我想知道 Java 中是否内置了任何东西,以便我可以像 Python 中的字典一样交换字符对,或者这是最好的方法吗?

最佳答案

可以尝试以下方法:

public char change(char x) {
final String dictionary = "abtr";
final String transform = "bart";

int loc= dictionary.indexOf(x);
if (loc < 0) {
return 'z';
} else {
return transform.charAt(loc);
}
}

关于Java 相当于 Python 字典,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21946482/

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