我正在尝试使用嵌套的if语句来确定变量的值,并且使用此代码,不会发生正确的结果。请有人帮忙吗?我正在使用一个数组来保存与输入进行比较的值(使用它来显示java的“知识”)。然后,我调用函数testFlower()来初始化逻辑。我无法确定我的错误在哪里出错了。每次输入任何内容时,打印行打印出的结果始终为“Roses”。当输入不同的花名称时,此返回的String应该更改,但这不会发生。有没有人对代码中的问题有任何想法?
import java.util.Scanner;
public class A {
public final double TAX = 1.127;
public final double s_basket = 10, m_basket = 20, l_basket = 30, s_elephant = 15, l_elephant = 30,
s_seal = 15, l_seal = 30, s_bear = 15, l_bear = 30, s_penguin = 15, l_penguin = 30,
mChocolate = 15, wChocolate = 20, dChocolate = 30;
public String flowers[] = {"ROSE", "TULIP", "DAISY", "DAFFODIL", "SUNFLOWER", "ORCHID"};
public Scanner s = new Scanner(System.in);
public String flowerType;
public void testFlower() {
if (!(flowerType.equals(flowers[1]))) {
if (!(flowerType.equals(flowers[2]))) {
if (!(flowerType.equals(flowers[3]))) {
if (!(flowerType.equals(flowers[4]))) {
if (!(flowerType.equals(flowers[5]))) {
flowerType = "Roses";
System.out.println(flowerType);
} else {
flowerType = "Orchids";
System.out.println(flowerType);
}
} else {
flowerType = "Sunflowers";
System.out.println(flowerType);
}
} else {
flowerType = "Daffodils";
System.out.println(flowerType);
}
} else {
flowerType = "Daises";
System.out.println(flowerType);
}
} else {
flowerType = "Tulips";
System.out.println(flowerType);
}
}
public static void main(String[] args) {
A a = new A();
System.out.println("Hello! Welcome to my flower shop! What type of flowers do you want? (rose, tulip, daisy, daffodil, sunflower, orchid)");
a.flowerType = a.s.nextLine();
a.flowerType.toUpperCase();
a.testFlower();
}
}
答案 0 :(得分:1)
正如chrylis在上一个回答中所说,你的大包是不正确的。但我还要指出,您不必使用嵌套的if / else语句,因为Java有一个HashMap类,可以将对象用作键。请参阅以下代码:
public HashMap<String, String> flowers = new HashMap<String, String>();
flowers.put("ROSE", "Roses");
...
flowers.put("ORCHID", "Orchids");
//this code basically replaces your testFlower function.
System.out.println(flowers.get(flowerType));
我希望我没有误解你的计划的目的。如果我这样做,请忽略我的答案。
答案 1 :(得分:0)
首先,学习使用调试器并检查flowerType
等值。这样做会立即向您显示大写字母没有达到您的预期:您必须将结果分配给变量,因为字符串是不可变的。
a.flowerType = a.s.nextLine();
a.flowerType = a.flowerType.toUpperCase();
答案 2 :(得分:0)
如果将数组中的值更改为
"ROSES", "TULIPS", "DAISIES", "DAFFODILSS", "SUNFLOWERS", "ORCHIDS"
使用for
循环而不是嵌套的if语句(节省大量输入):
for(int i =0; i < flowers.length;i++){
if(flowers[i].equals(flowerType){
system.out.println(flowerType);
break;
} else if (i == flowers.length - 1) {
system.out.println("Unknown flowertype " + flowerType);
}
}
使用花方法的参数:
a.flowerType = a.s.nextLine();
a.flowerType = a.flowerType.toUpperCase();
a.testFlower(flowerType);
public void testFlower(String f){
flowerType = f;
// do something
}
像这样你的程序可以工作。