A program is a series of instructions that ask the computer
(actually the compiler) to check some situations and to act accordingly. To
check such situations, the computer spends a great deal of its time performing
comparisons between values. A comparison is a Boolean operation that produces a
true or a false result, depending on the values on which the comparison is
performed.
A comparison is performed between two values of the same
type; for example, you can compare two numbers, two characters, or the names of
two cities. On the other hand, a comparison between two disparate values doesn't
bear any meaning. For example, it is difficult to compare a telephone number and
somebody's age, or a music category and the distance between two points. Like
the binary arithmetic operations, the comparison operations are performed on two
values. Unlike arithmetic operations where results are varied, a comparison
produces only one of two results. The result can be a logical true or a logical
false. When a comparison is true, it has an integral value of 1 or positive;
that is, a value greater than 0. If the comparison is not true, it is considered
false and carries an integral value of 0.
The Java language is equipped with various operators used to
perform any type of comparison between similar values. The values could be
numeric, strings, or objects (operations on objects are customized in a process
referred to as Operator Overloading).
There are primary assumptions you should make when writing
statements used in conditions:
In your programs, make sure you clearly formulate your
statements. This would make your programs easy to read and troubleshoot when
problems occur (not if, but when).
To compare two variables for equality, Java uses the ==
operator. The formula used is:
Value1 == Value2
The equality operation is used to find out whether two
variables (or one variable and a constant) hold the same value. From our syntax,
the compiler would compare the value of Value1 with that of Value2. If Value1
and Value2 hold the same value, the comparison produces a true result. If they
are different, the comparison renders false.
Most of the comparisons performed in Java will be applied to
conditional statements. The result of a comparison can also be assigned to a
variable. To store the result of a comparison, you should include the comparison
operation between parentheses. Here is an example:
public class Exercise {
static void main(String[] args) {
int Value1 = 15;
int Value2 = 24;
System.out.println("Value 1 = " + Value1);
System.out.println("Value 2 = " + Value2);
System.out.print("Comparison of Value1 == 15 produces ");
System.out.println(Value1 == 15);
}
}
This would produce:
Value 1 = 15 Value 2 = 24 Comparison of Value1 == 15 produces true
It is important to make a distinction between the assignment
"=" and the logical equality operator "==". The first is used to give a new
value to a variable, as in Number = 244. The operand on the left side of = must
always be a variable and never a constant. The == operator is never used to
assign a value; this would cause an error. The == operator is used only to
compare to values. The operands on both sides of == can be variables, constants,
or one can be a variable while the other is a constant. If you use one operator
in place of the other, you would receive an error when you compile the program.
When a variable is declared and receives a value (this could
be done through initialization or a change of value) in a program, it becomes
alive. It can then participate in any necessary operation. The compiler keeps
track of every variable that exists in the program being processed. When a
variable is not being used or is not available for processing (in visual
programming, it would be considered as disabled) to make a variable
(temporarily) unusable, you can nullify its value. Java considers that a variable
whose value is null is stern. To render a variable unavailable during the
evolution of a program, apply the logical not operator which is !. Its syntax
is:
!Value
There are two main ways you can use the logical not
operator. As we will learn when studying conditional statements, the most
classic way of using the logical not operator is to check the state of a
variable.
To nullify a variable, you can write the exclamation point
to its left. Here is an example:
public class Exercise {
static void main(String[] args) {
boolean HasAirCondition = true;
boolean DoesIt;
System.out.println("HasAirCondition = " + HasAirCondition);
DoesIt = !HasAirCondition;
System.out.println("DoesIt ? = " + DoesIt);
}
}
This would produce:
HasAirCondition = true DoesIt ? = false
When a variable holds a value, it is "alive". To make it not
available, you can "not" it. When a variable has been "notted", its logical
value has changed. If the logical value was true, which is 1, it would be
changed to false, which is 0. Therefore, you can inverse the logical value of a
variable by "notting" or not "notting" it.
As opposed to Equality, Java provides another operator used to
compare two values for inequality. This operation uses a combination of equality
and logical not operators. It combines the logical not ! and a simplified == to
produce !=. Its syntax is:
Value1 != Value2
The != is a binary operator (like all logical operator
except the logical not, which is a unary operator) that is used to compare two
values. The values can come from two variables as in Variable1 != Variable2.
Upon comparing the values, if both variables hold different values, the
comparison produces a true or positive value. Otherwise, the comparison renders
false or a null value:
Here is an example:
public class Exercise {
static void main(String[] args) {
int Value1 = 212;
int Value2 = -46;
boolean Value3 = (Value1 != Value2);
System.out.println("Value1 = " + Value1);
System.out.println("Value2 = " + Value2);
System.out.println("Value3 = " + Value3);
}
}
This would produce:
Value1 = 212 Value2 = -46 Value3 = true
The inequality is obviously the opposite of the equality.
To find out whether one value is lower than another, use the
< operator. Its syntax is:
Value1 < Value2
The value held by Value1 is compared to that of Value2. As
it would be done with other operations, the comparison can be made between two
variables, as in Variable1 < Variable2. If the value held by Variable1 is lower
than that of Variable2, the comparison produces a true or positive result.
Here is an example:
public class Exercise { static void main(String[] args) { int Value1 = 15; boolean Value2 = (Value1 < 24); System.out.println("Value 1 = " + Value1); System.out.println("Value 2 = " + Value2); } }
This would produce:
Value 1 = 15 Value 2 = true
The previous two operations can be combined to compare two
values. This allows you to know if two values are the same or if the first is
less than the second. The operator used is <= and its syntax is:
Value1 <= Value2
The <= operation performs a comparison as any of the last
two. If both Value1 and VBalue2 hold the same value, result is true or positive.
If the left operand, in this case Value1, holds a value lower than the
second operand, in this case Value2, the result is still true.
Here is an example:
public class Exercise { static void main(String[] args) { int Value1 = 15; boolean Value2 = (Value1 <= 24); System.out.println("Value 1 = " + Value1); System.out.println("Value 2 = " + Value2); } }
This would produce:
Value 1 = 15 Value 2 = True
When two values of the same type are distinct, one of them
is usually higher than the other. Java provides a logical operator that allows you
to find out if one of two values is greater than the other. The operator used
for this operation uses the > symbol. Its syntax is:
Value1 > Value2
Both operands, in this case Value1 and Value2, can be
variables or the left operand can be a variable while the right operand is a
constant. If the value on the left of the > operator is greater than the value
on the right side or a constant, the comparison produces a true or positive
value . Otherwise, the comparison renders false or null:
The greater than or the equality operators can be combined
to produce an operator as follows: >=. This is the "greater than or equal to"
operator. Its syntax is:
Value1 >= Value2
A comparison is performed on both operands: Value1 and
Value2. If the value of Value1 and that of Value2 are the same, the comparison
produces a true or positive value. If the value of the left operand is greater
than that of the right operand,, the comparison produces true or positive also.
If the value of the left operand is strictly less than the value of the right
operand, the comparison produces a false or null result:
Here is a summary table of the logical operators we have
studied:
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||
|
|
No comments:
Post a Comment