当前位置: 首页 > 知识库问答 >
问题:

变量“result”可能尚未初始化

鲜于玮
2023-03-14
public class MonthName {
  public static String month_name(int month) {
    String result;

    if (month == 1) {
      result = "January";
    } else if (month == 2) {
      result = "February";
    } else if (month == 3) {
      result = "February";
    } else if (month == 4) {
      result = "February";
    } else if (month == 5) {
      result = "February";
    } else if (month == 6) {
      result = "February";
    } else if (month == 7) {
      result = "February";
    } else if (month == 8) {
      result = "February";
    } else if (month == 9) {
      result = "February";
    } else if (month == 10) {
      result = "February";
    } else if (month == 11) {
      result = "February";
    } else if (month == 12) {
      result = "February";
    }

    return result;
  }


  public static void main(String[] args) {
    System.out.println("Month 1: " + month_name(1));
    System.out.println("Month 2: " + month_name(2));
    System.out.println("Month 3: " + month_name(3));
    System.out.println("Month 4: " + month_name(4));
    System.out.println("Month 5: " + month_name(5));
    System.out.println("Month 6: " + month_name(6));
    System.out.println("Month 7: " + month_name(7));
    System.out.println("Month 8: " + month_name(8));
    System.out.println("Month 9: " + month_name(9));
    System.out.println("Month 10: " + month_name(10));
    System.out.println("Month 11: " + month_name(11));
    System.out.println("Month 12: " + month_name(12));
    System.out.println("Month 43: " + month_name(43));
  }
}

所以我已经在结果中声明了相关字符串的值,但是它仍然说我的变量“result”可能还没有初始化。

我正在尝试实现与此类似的输出。任何人都可以帮我吗?谢谢!

共有3个答案

虞高雅
2023-03-14

由于只是一个int,它可以采用1-12以外的值(您的if/其他/if结构处理)。

要消除错误,您可以将其初始化为空字符串,但是,您可能需要考虑错误情况。

例如,如果传递的内容不在1-12范围内,该方法应该做什么?

杜元明
2023-03-14

局部变量应该在使用前初始化。它们没有默认值

初始化它

String result="";
申屠俊发
2023-03-14

如果你的可变月份可能是空的或是别的什么,这可能会发生

js lang-js prettyprint-override">public class MonthName {
  public static String month_name(int month) {
    String result = "";

    if (month == 1) {
      result = "January";
    } else if (month == 2) {
      result = "February";
    } else if (month == 3) {
      result = "February";
    } else if (month == 4) {
      result = "February";
    } else if (month == 5) {
      result = "February";
    } else if (month == 6) {
      result = "February";
    } else if (month == 7) {
      result = "February";
    } else if (month == 8) {
      result = "February";
    } else if (month == 9) {
      result = "February";
    } else if (month == 10) {
      result = "February";
    } else if (month == 11) {
      result = "February";
    } else {
      result = "February";
    }

    return result;
  }


  public static void main(String[] args) {
    System.out.println("Month 1: " + month_name(1));
    System.out.println("Month 2: " + month_name(2));
    System.out.println("Month 3: " + month_name(3));
    System.out.println("Month 4: " + month_name(4));
    System.out.println("Month 5: " + month_name(5));
    System.out.println("Month 6: " + month_name(6));
    System.out.println("Month 7: " + month_name(7));
    System.out.println("Month 8: " + month_name(8));
    System.out.println("Month 9: " + month_name(9));
    System.out.println("Month 10: " + month_name(10));
    System.out.println("Month 11: " + month_name(11));
    System.out.println("Month 12: " + month_name(12));
    System.out.println("Month 43: " + month_name(43));
  }
}
 类似资料:
  • 问题内容: 我有一个方法创建一个,另一个方法更改字符串 我的编译器说它“可能尚未初始化”。 有人可以解释吗? 问题答案: 变量可能尚未初始化 在内部定义方法时,必须在其中初始化程序的每个变量中必须先使用一个值的地方。 同样重要的是,您的代码将永远无法正常运行,因为Java中的字符串是不可变的,因此您无法编辑字符串,因此应更改方法。 我将您的代码更改为类似的内容,但是我认为您的编辑方法应该做另一件事

  • 我正在研究Euler Problem 9项目,其中说明: 毕达哥拉斯三元组是由三个自然数组成的集合 例如,3^2 4^2=9 16=25=52。 确实存在一个毕达哥拉斯三重态,其bc=1000。查找产品abc。 以下是我到目前为止所做的: 当我运行代码时,会出现以下错误: 注意:我的每个变量(a、b和c)都有不同的行号。 我想当我声明a、b和c为整数时,如果不赋值,默认值是0。 即使不是这样,在我

  • 问题内容: 我得到错误: TestCounter.java:115:变量计数器可能尚未初始化counters [i] = new Counter(i); 而且我不知道如何解决它。我知道我的课程“” 有效。下面是我的代码,如果您可以看一下,我将非常高兴。此代码包装在类的main方法中。 问题答案: 您尚未创建数组,只是声明了变量。 您需要这样做: 或类似的东西

  • 在最后一行显示为时出错 :::: 变量结果可能尚未初始化 这是我的代码:

  • 我试图使用Android Studio中的Google Firebase(机器学习工具包)的例子。将图像变量传递到检测器时出错。processImage方法(错误如下所示)。 我怎样才能克服这个错误?我必须使用FirebaseVisionImage。try-catch块中的fromFilePath,但错误消息告诉我image变量可能未初始化。 错误:变量映像可能尚未初始化

  • 问题内容: UI类在View中,导入已完成,但是在最后一个表达式中我得到了错误。 我是Java的入门者,但我不明白为什么我不允许这样使用它。 问题答案: 如果要在Java方法中声明变量/对象,则需要对其进行初始化。 简单来说 在您的情况下,它是一个正在访问方法的对象,因此,如果不初始化它,就像 它会给你一个NULL指针异常。 希望能帮助到你。