4.1.The if-then Statement
The if-then statement is the most fundamental of all control flow statements. It instructs your program to execute a specific section of code only if a specific test generates a true result. For instance, the Bicycle class could permit the brakes to reduce the bicycle’s velocity solely when the bicycle is already in motion. An example of how the applyBrakes method could be implemented is as follows:
void applyBrakes(){ if (isMoving){ // the "if" clause: bicycle must be moving currentSpeed--; // the "then" clause: decrease current speed } }
The control is advanced to the conclusion of the if-then statement if this test is evaluated as false, indicating that the bicycle is not in motion.
Furthermore, the opening and closing braces are optional, provided that the “then” clause contains only one statement:
void applyBrakes(){ if (isMoving) currentSpeed--; // same as above, but without braces }
The decision to omit the orthodontics is a matter of personal preference. The code may become more fragile if they are omitted. A common error is neglecting to include the newly required parentheses if a second statement is subsequently inserted into the “then” clause. This type of error is not detectable by the compiler; consequently, the output will be inaccurate.