gpt4 book ai didi

java - 错误 : variable data might not have been initialized

转载 作者:行者123 更新时间:2023-12-02 11:12:43 28 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





Variable might not have been initialized error

(12 个回答)


6年前关闭。




我收到此错误,但我不完全确定为什么,我确实声明(第 6 行)和初始化(第 11 行)变量,但我仍然收到错误。代码如下:

public static char ReadChar (String prompt, boolean gui) {
// Enter (prompt, True) for gui popup, else enter prompt and false

// set up data and objects
Scanner input = new Scanner(System.in);
char data;
String dataGui, strData;


// prompt for an input int value
if (gui == true){

dataGui = JOptionPane.showInputDialog(null, prompt);
data = dataGui.charAt(0);

}

else {
System.out.print(prompt);
strData = input.nextLine();

}
return data;

}

最佳答案

分配数据变量值。如data如果 gui 为真,则分配,但如果 data 为假,该怎么办。所以要么你必须分配in elseat a time of declaration .为避免错误,您需要分配本地变量。 Java 不强制初始化实例变量并允许默认值,但对于局部变量,开发人员调用它来分配值。

 char data = 0;

关于java - 错误 : variable data might not have been initialized,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34523737/

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