gpt4 book ai didi

java - 使用 If 语句中定义的变量?

转载 作者:行者123 更新时间:2023-12-02 09:46:27 25 4
gpt4 key购买 nike

抱歉,如果这听起来很愚蠢,但我似乎无法弄清楚如何使用我在 If 语句中定义的变量。

import java.util.Scanner;

public class HelloWorld {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);



//Prompt for Enchantment Type
System.out.println("Armor/Tool/Weapon");

//Wait for response
String input1 = scanner.nextLine();

if(input1 == "Armor"){
int type = 0;
}
else if(input1 == "Tool"){
int type = 1;
}
else if(input1 == "Weapon"){
int type = 2;
}
else {
int type = 3;
}

//This is where I need to access the type int
if(type == 1){

}
}
}

我不知道如何在其 block 之外使用类型字符串。我知道我应该阅读范围之类的内容,但我真的希望有人向我解释一下。

最佳答案

  1. if 范围之外声明变量
  2. 使用.equals比较字符串

固定代码:

String input1 = scanner.nextLine();
int type; // scope

if(input1.equals("Armor")){
int type = 0;
}
else if(input1.equals("Tool")){
int type = 1;
}
else if(input1.equals("Weapon")){
int type = 2;
}
else {
int type = 3;
}

//This is where I need to access the String type
if(type == 1){

}

请注意,您还可以使用 switch 语句(仅在 Java 7 中!):

switch(input1) {
case "Armor":
type = 0;
break;
case "Tool":
type = 1;
break;
...

此外,在您的情况下,您可以尝试 indexOf:

import java.util.Arrays;

List<String> types = Arrays.asList("Armor", "Tool", "Weapon");
int type = types.indexOf(input1);
if (type == -1) type = 3; // if it's not found

关于java - 使用 If 语句中定义的变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18698302/

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