gpt4 book ai didi

java - 你如何比较人物?

转载 作者:行者123 更新时间:2023-12-01 04:19:20 26 4
gpt4 key购买 nike

我只是想问一下如何在GUI中使用字母来比较字符。以下是我随机字母的方法:

Random r = new Random();

char c = (char) (r.nextInt(26) + 'a');

然后,当我想将它与输入字母进行比较时,我就是这样做的:

char c;
if(x==c) {
prompt.setText("Correct!");
prompt.setForeground(Color.GREEN);
}
else if(x > c) {
prompt.setText("Oops! Letter is lower");
prompt.setForeground(Color.RED);
}
else if(x < c) {
prompt.setText("Oops! Letter is higher");
prompt.setForeground(Color.RED);
}

但是,每次我运行程序时,每输入一个字母,结果都是“哎呀!字母更高”。

请帮帮我。如何正确运行这个程序?

谢谢!

最佳答案

使用char1.compareTo(char2)方法。它将为您提供您正在寻找的值。

更多信息here如果你想要的话。

关于java - 你如何比较人物?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19118262/

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