Java variable might not have been initialized? [cl

2020-05-03 09:54发布

My BlueJ IDE is showing this error when I try to compile the class. I can't see what I'm doing wrong.

enter image description here

4条回答
一纸荒年 Trace。
2楼-- · 2020-05-03 10:42

This is a private method and local variables don't get default values, they have to be initialized. Consider a case where control doesn't go inside if block, then your variable contains no value, hence the error.

查看更多
Bombasti
3楼-- · 2020-05-03 10:43

If the condition in the if clause is not true, the variable is not assigned. In this case, the return that follows references an uninitialized variable.

查看更多
老娘就宠你
4楼-- · 2020-05-03 10:47

Local variables should be initialized with value before using it .Something like this :

  double albedo = 0.0;

The compiler complains because local variables are not assigned any value by default. So at run time if the if() condition fails then the variable will not be assigned any value and in that case what value should the run time return back to the caller of the function ? Hence initialize it with some default value.

查看更多
家丑人穷心不美
5楼-- · 2020-05-03 10:53

Before you can use a variable inside your if block , you need to initialize it.

Try this :

double albedo=0;

Instead of :

double albedo;

Keep in mind though that your variable will remain 0 if your condition returns false as you haven't specified an else block.

查看更多
登录 后发表回答