当前位置:  开发笔记 > 编程语言 > 正文

如何从IF语句的结果声明String?

如何解决《如何从IF语句的结果声明String?》经验,为你挑选了2个好方法。

我一直在玩并测试我学到的一些东西,但由于某种原因,这对我不起作用.它只是mid-app,但是我在开发过程中继续运行它,以便在我完成时不会有一千个问题堆积起来.它应该能够按原样运行.

import java.util.Scanner;

public class Speed {
    public void speedAsker(){
        Scanner scan = new Scanner(System.in);

        System.out.println("Should we use: 1.KMPH or 2. MPH");
        int s1 = scan.nextInt();
        if(s1==1){
            String j1 = "KMPH";
            System.out.println("We will be using Kilometres for this calculation.");
        }if(s1 ==2){
            String j1 = "MPH";
            System.out.println("We will be using Miles for this calculation.");
        }else{
            System.out.println("That is an invalid input, you must choose between 1 or 2.");
        }
        System.out.println("What speed is your vehicle going in?");
        int d1 = scan.nextInt();
        System.out.println("Your vehicle was going at " + d1 + j1 + ".");
    }
}

这就是我得到的输出.启动器类只是字面上启动这个类,我只是为了良好的实践.我遇到的问题是尝试根据答案标记j1,然后在我的输出中使用它.

线程"main"中的异常java.lang.Error:未解决的编译问题:
j1无法解析为 Launcher.main
中的Speed.speedAsker(Speed.java:28)
中的变量(Launcher.java:7)

提前致谢.



1> greedybuddha..:

你在外面声明它,然后在if/else中定义它

String j1;
if(s1==1){
    j1 = "KMPH";
    System.out.println("We will be using Kilometres for this calculation.");
}if(s1 ==2){
    j1 = "MPH";
    System.out.println("We will be using Miles for this calculation.");
}else{
    j1 = null;
    System.out.println("That is an invalid input, you must choose between 1 or 2.");
}


没问题!和@Freiheit,两个有意义的值是null或空字符串"".老实说,因为它是一个错误状态,最好抛出异常.但在上下文中我认为null更合适

2> Andy Thomas..:

在for循环外声明你的字符串,并在里面分配它.

例如:

String j1;

if(s1==1){
    j1 = "KMPH";
    System.out.println("We will be using Kilometres for this calculation.");
}if(s1 ==2){
    j1 = "MPH";
    System.out.println("We will be using Miles for this calculation.");
}else{
    j1 = "";
    System.out.println("That is an invalid input, you must choose between 1 or 2.");
}

...

System.out.println("Your vehicle was going at " + d1 + j1 + ".");

请注意,Java要求局部变量在使用之前具有明确的赋值.上面的声明"String j1"不提供默认值,因此else子句必须提供一个或异常退出.

您还可以在声明中提供默认值:

 String j1 = "";

推荐阅读
落单鸟人
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有