What is the statement that can be used in Java to represent a missing value of a variable. for instance I want to write a code:
if (a>=23)
income = pay_rate;
There is a lot of bad advice in this thread. First let me address why you should not be going for some of the suggested approaches.
1. Using wrapper types and null
Integer income = null;
if (a >= 23) {
income = payRate;
}
Java has auto-unboxing. What if you somewhere accidentally use income
in a place where Java had to auto-unbox it? The compiler cannot catch this error and your code will blow up at runtime.
Secondly, the "nullability" of income is not part of income
's type. As a result, it's up to the programmer to be careful about checking it for null
every time it is used. If he forgets to perform this check, compiler will not complain, but you will get NullPointerException
s at runtime.
2. Using sentinel values to denote exceptional conditions
int income = Integer.MAX_VALUE;
if (a >= 23) {
income = payRate;
}
This approach shares the second drawback of null
approach. Even worse, in this case, instead of throwing an exception, computation will continue even in erroneous conditions, since Integer.MAX_VALUE
is a valid int
, leading to possible disastrous outcomes.
So how should you deal with this?
Use a data type that:
Maybe (also known as Option
) fits the bill. (@Bahribayli already suggested this. I am expanding on it.) See the data definition here.
And this how you would use it in your case:
Maybe income = Nothing.value();
if (a >= 23) {
income = Just.of(payRate);
}
There is a library named Functional Java that provides this abstraction. If you have any further questions regarding the use of this data type, I will be happy to answer them.