|
|
Start of Tutorial > Start of Trail > Start of Lesson |
Search
Feedback Form |
The ifstatement enables your program to selectively execute other statements, based on some criteria. For example, suppose that your program prints debugging information, based on the value of a boolean variable named
DEBUG. IfDEBUGistrue, the program prints debugging information, such as the value of a variable, sayx. Otherwise, your program proceeds normally. A segment of code to implement this might look like this.This is the simplest version of theif (DEBUG) { System.out.println("DEBUG: x = " + x); }ifstatement: The block governed byifis executed if a condition istrue. Generally, the simple form ofifcan be written as follows.What if you want to perform a different set of statements if the expression isif (expression) { statement(s) }false? You can use the elsestatement for that. Consider another example: Suppose your program needs to perform different actions depending on whether the user clicks the OK button or another button in an alert window. The program could do this by using an
ifstatement along with anelsestatement.The. . . //Response is either OK or CANCEL, depending //on the button that the user pressed. . . . if (response == OK) { //code to perform OK action } else { //code to perform Cancel action }elseblock is executed if theifpart isfalse. Another form of theelsestatement,else if, executes a statement based on another expression. Anifstatement can have any number of companionelse ifstatements but only oneelse. The following program,IfElseDemo, assigns a grade based on the value of a test score: an A for a score of 90% or above, a B for a score of 80% or above, and so on.
This is the output from the program.public class IfElseDemo { public static void main(String[] args) { int testscore = 76; char grade; if (testscore >= 90) { grade = 'A'; } else if (testscore >= 80) { grade = 'B'; } else if (testscore >= 70) { grade = 'C'; } else if (testscore >= 60) { grade = 'D'; } else { grade = 'F'; } System.out.println("Grade = " + grade); } }You may have noticed that the value ofGrade = Ctestscorecan satisfy more than one of the expressions in the compoundifstatement:76 >= 70and76 >= 60. However, as the runtime system processes a compoundifstatement like this one, once a condition is satisfied, the appropriate statements are executed (grade = 'C';) and control passes out of theifstatement without evaluating the remaining conditions.The Java programming language supports an operator
?: that is a compact version of anifstatement. Recall the following statement from theMaxVariablesDemoprogram.
Here's how you could rewrite that statement using theif (Character.isUpperCase(aChar)) { System.out.println("The character " + aChar + " is uppercase."); } else { System.out.println("The character " + aChar + " is lowercase."); }?:operator (shown in boldface).TheSystem.out.println("The character " + aChar + " is " + (Character.isUpperCase(aChar) ? "upper" : "lower") + "case.");?:operator returns the string"upper"if theisUpperCasemethod returnstrue; otherwise, it returns the string"lower". The result is concatenated with other parts of a message to be displayed. Using?:makes sense here because theifstatement is secondary to the call to theprintlnmethod. Once you get used to this construct, it also makes the code easier to read.
|
|
Start of Tutorial > Start of Trail > Start of Lesson |
Search
Feedback Form |
Copyright 1995-2005 Sun Microsystems, Inc. All rights reserved.