Core Java(TM) 2, Volume I--Fundamentals (7th Edition) (Core Series) (Core Series)
The usual arithmetic operators + * / are used in Java for addition, subtraction, multiplication, and division. The / operator denotes integer division if both arguments are integers, and floating-point division otherwise. Integer remainder (sometimes called modulus) is denoted by %. For example, 15 / 2 is 7, 15 % 2 is 1, and 15.0 / 2 is 7.5. Note that integer division by 0 raises an exception, whereas floating-point division by 0 yields an infinite or NaN result. There is a convenient shortcut for using binary arithmetic operators in an assignment. For example, x += 4;
is equivalent to x = x + 4; (In general, place the operator to the left of the = sign, such as *= or %=.) NOTE
Increment and Decrement Operators
Programmers, of course, know that one of the most common operations with a numeric variable is to add or subtract 1. Java, following in the footsteps of C and C++, has both increment and decrement operators: n++ adds 1 to the current value of the variable n, and n-- subtracts 1 from it. For example, the code int n = 12; n++; changes n to 13. Because these operators change the value of a variable, they cannot be applied to numbers themselves. For example, 4++ is not a legal statement. There are actually two forms of these operators; you have seen the "postfix" form of the operator that is placed after the operand. There is also a prefix form, ++n. Both change the value of the variable by 1. The difference between the two only appears when they are used inside expressions. The prefix form does the addition first; the postfix form evaluates to the old value of the variable. int m = 7; int n = 7; int a = 2 * ++m; // now a is 16, m is 8 int b = 2 * n++; // now b is 14, n is 8 We recommend against using ++ inside other expressions because this often leads to confusing code and annoying bugs. (Of course, while it is true that the ++ operator gives the C++ language its name, it also led to the first joke about the language. C++ haters point out that even the name of the language contains a bug: "After all, it should really be called ++C, because we only want to use a language after it has been improved.") Relational and boolean Operators
Java has the full complement of relational operators. To test for equality you use a double equal sign, ==. For example, the value of 3 == 7 is false. Use a != for inequality. For example, the value of 3 != 7 is true. Finally, you have the usual < (less than), > (greater than), <= (less than or equal), and >= (greater than or equal) operators. Java, following C++, uses && for the logical "and" operator and || for the logical "or" operator. As you can easily remember from the != operator, the exclamation point ! is the logical negation operator. The && and || operators are evaluated in "short circuit" fashion. The second argument is not evaluated if the first argument already determines the value. If you combine two expressions with the && operator, expression1 && expression2 and the truth value of the first expression has been determined to be false, then it is impossible for the result to be TRue. Thus, the value for the second expression is not calculated. This behavior can be exploited to avoid errors. For example, in the expression x != 0 && 1 / x > x + y // no division by 0
the second part is never evaluated if x equals zero. Thus, 1 / x is not computed if x is zero, and no divide-by-zero error can occur. Similarly, the value of expression1 || expression2 is automatically true if the first expression is true, without evaluation of the second expression. Finally, Java supports the ternary ?: operator that is occasionally useful. The expression condition ? expression1 : expression2 evaluates to the first expression if the condition is TRue, to the second expression otherwise. For example, x < y ? x : y
gives the smaller of x and y. Bitwise Operators
When working with any of the integer types, you have operators that can work directly with the bits that make up the integers. This means that you can use masking techniques to get at individual bits in a number. The bitwise operators are & ("and") | ("or") ^ ("xor") ~ ("not")
These operators work on bit patterns. For example, if n is an integer variable, then int fourthBitFromRight = (n & 8) / 8;
gives you a 1 if the fourth bit from the right in the binary representation of n is 1, and 0 if not. Using & with the appropriate power of 2 lets you mask out all but a single bit. NOTE
There are also >> and << operators, which shift a bit pattern to the right or left. These operators are often convenient when you need to build up bit patterns to do bit masking: int fourthBitFromRight = (n & (1 << 3)) >> 3; Finally, a >>> operator fills the top bits with zero, whereas >> extends the sign bit into the top bits. There is no <<< operator. CAUTION
C++ NOTE
Mathematical Functions and Constants
The Math class contains an assortment of mathematical functions that you may occasionally need, depending on the kind of programming that you do. To take the square root of a number, you use the sqrt method: double x = 4; double y = Math.sqrt(x); System.out.println(y); // prints 2.0 NOTE
The Java programming language has no operator for raising a quantity to a power: you must use the pow method in the Math class. The statement double y = Math.pow(x, a);
sets y to be x raised to the power a (xa). The pow method has parameters that are both of type double, and it returns a double as well. The Math class supplies the usual trigonometric functions Math.sin Math.cos Math.tan Math.atan Math.atan2 and the exponential function and its inverse, the natural log: Math.exp Math.log Finally, two constants denote the closest possible approximations to the mathematical constants p and e: Math.PI Math.E TIP
NOTE
Conversions Between Numeric Types
It is often necessary to convert from one numeric type to another. Figure 3-1 shows the legal conversions. Figure 3-1. Legal conversions between numeric types
The six solid arrows in Figure 3-1 denote conversions without information loss. The three dotted arrows denote conversions that may lose precision. For example, a large integer such as 123456789 has more digits than the float type can represent. When the integer is converted to a float, the resulting value has the correct magnitude but it loses some precision. int n = 123456789; float f = n; // f is 1.23456792E8
When two values with a binary operator (such as n + f where n is an integer and f is a floating-point value) are combined, both operands are converted to a common type before the operation is carried out.
Casts
In the preceding section, you saw that int values are automatically converted to double values when necessary. On the other hand, there are obviously times when you want to consider a double as an integer. Numeric conversions are possible in Java, but of course information may be lost. Conversions in which loss of information is possible are done by means of casts. The syntax for casting is to give the target type in parentheses, followed by the variable name. For example: double x = 9.997; int nx = (int) x;
Then, the variable nx has the value 9 because casting a floating-point value to an integer discards the fractional part. If you want to round a floating-point number to the nearest integer (which is the more useful operation in most cases), use the Math.round method: double x = 9.997; int nx = (int) Math.round(x); Now the variable nx has the value 10. You still need to use the cast (int) when you call round. The reason is that the return value of the round method is a long, and a long can only be assigned to an int with an explicit cast because there is the possibility of information loss. CAUTION
C++ NOTE
Parentheses and Operator Hierarchy
Table 3-4 shows the precedence of operators. If no parentheses are used, operations are performed in the hierarchical order indicated. Operators on the same level are processed from left to right, except for those that are right associative, as indicated in the table. For example, because && has a higher precedence than ||, the expression a && b || c
means (a && b) || c
Because += associates right to left, the expression a += b += c
means a += (b += c)
That is, the value of b += c (which is the value of b after the addition) is added to a. C++ NOTE
Enumerated Types
Sometimes, a variable should only hold a restricted set of values. For example, you may sell clothes or pizza in four sizes: small, medium, large, and extra large. Of course, you could encode these sizes as integers 1, 2, 3, 4, or characters S, M, L, and X. But that is an error-prone setup. It is too easy for a variable to hold a wrong value (such as 0 or m). Starting with JDK 5.0, you can define your own enumerated type whenever such a situation arises. An enumerated type has a finite number of named values. For example, enum Size { SMALL, MEDIUM, LARGE, EXTRA_LARGE };
Now you can declare variables of this type: Size s = Size.MEDIUM;
A variable of type Size can hold only one of the values listed in the type declaration or the special value null that indicates that the variable is not set to any value at all. We discuss enumerated types in greater detail in Chapter 5. |