Form 1: if statement
The if statement means that if a certain condition is met, a certain process will be performed. For example, Xiao Ming’s mother said to Xiao Ming, “If you get 100 points in the exam, I will take you to the amusement park on Sunday.” This sentence can be described by the following pseudocode.
If Xiao Ming got 100 points in the exam
Mom took Xiao Ming to the amusement park on Sunday
In the above pseudocode, "if" is equivalent to the keyword if in Java, "Xiao Ming took the exam "Scored 100 points" is the judgment condition and needs to be enclosed in (). "Mom took Xiao Ming to the amusement park on Sunday" is the execution statement and needs to be placed in {}. The modified pseudocode is as follows:
if(小明考试得了100分){ 妈妈星期日带小明去游乐场 }
The above example describes the usage of the statement. In Java, the specific syntax format of the if statement is as follows:
if(条件语句){ 代码块 }
Above In the format, the judgment condition is a Boolean value. When the judgment condition is true, the execution statement in {} will be executed.
Form 2: if...else statement
The if...else statement means that if a certain condition is met, a certain process will be performed, otherwise another process will be performed. . For example, to determine the parity of a positive integer, if the number is divisible by 2, it is an even number, otherwise the number is an odd number. The specific syntax format of the if...else statement is as follows:
if(判断条件){ 执行语句1 }else{ 执行语句2 }
In the above format, the judgment condition is a Boolean value. When the judgment condition is true, the execution statement 1 below will be executed. When the judgment condition is false, execution statement 2 in {} after else will be executed.
Form 3: if…else if…else statement
if…else The if…else statement is used to judge multiple conditions and perform a variety of different processes. . For example, a student's test scores are graded. If the score is greater than 80 points, the grade is excellent. Otherwise, if the score is greater than 70 points, the grade is good. Otherwise, if the score is greater than 60 points, the grade is medium. Otherwise, the grade is poor. . if...else The specific syntax format of the if...else statement is as follows:
if(判断条件1){ 执行语句1 } else if(判断条件2){ 执行语句2 } … else if(判断条件n){ 执行语句n }else{ 执行语句n+1 }
In the above format, the judgment condition is a Boolean value. When the judgment condition 1 is true, the execution statement 1 in the following {} will be executed. When judgment condition 1 is false, judgment condition 2 will continue to be executed. If it is true, sentence 2 will be executed, and so on. If all judgment conditions are false, it means that all conditions are not satisfied. The { in else follows Execution statement n 1 will be executed.
Recommended tutorial: java introductory tutorial
The above is the detailed content of What are the forms and usages of if statements in java. For more information, please follow other related articles on the PHP Chinese website!

The article discusses various Java garbage collection algorithms (Serial, Parallel, CMS, G1, ZGC), their performance impacts, and suitability for applications with large heaps.

The article discusses the Java Virtual Machine (JVM), detailing its role in running Java programs across different platforms. It explains the JVM's internal processes, key components, memory management, garbage collection, and performance optimizatio

Java's Nashorn engine enables JavaScript scripting within Java apps. Key steps include setting up Nashorn, managing scripts, and optimizing performance. Main issues involve security, memory management, and future compatibility due to Nashorn's deprec

Java's try-with-resources simplifies resource management by automatically closing resources like file streams or database connections, improving code readability and maintainability.

Java enums represent fixed sets of values, offering type safety, readability, and additional functionality through custom methods and constructors. They enhance code organization and can be used in switch statements for efficient value handling.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Dreamweaver Mac version
Visual web development tools