search
HomeJavajavaTutorialJava Study Notes (Introduction)_Program flow control structure and methods

Program flow control structures and methods
Program flow control structures are divided into: sequence, selection, loop and exception handling structures. Statements are the basic building blocks of programs. In Java, there are simple statements and matching statements. A simple statement is a line of code, for example, privateint3=3; a compound statement is a combination of simple statements, such as a method, etc. Generally speaking, the execution flow of statements is carried out in order, but when encountering some special conditions, such as loops, the statements will be carried out according to the process control structure.
(1) Selection structure
The selection structure is used to implement different operations based on different conditions. It provides a mechanism that allows the program to run corresponding statements based on corresponding conditions. There are two forms of Java language implementation selection structure: one is an if-else statement with two-way branch selection, and the other is a switch statement with multi-branch selection. Selecting statements requires the use of logic, but it is relatively simple, such as the true or false of a proposition, whether it is true or not, etc. Logical propositions are used to represent logical expressions and serve as logical conditions for two-way branch or multi-way branch structures.
Obviously, we are more concerned about the writing of conditions, which generally include: relational expressions, logical expressions and conditional operation expressions.
①Relational expression: An expression that connects two expressions using relational operators. Calculate the values ​​of two expressions of the same type and then compare them. The result is: true (true) or false (false). For example:
x%2==0;
x+y>=0;
②Logical expression: The operand is a logical value and the expression of the expression connected with logical symbols becomes a logical expression, and its value is still logical value. For example:
x>6&&yx>6||y>8;
y%4==0&&y%100!=0&&y%400==0//y is a leap year condition
③Conditional operation expression: by Expressions connected by the ternary operator, the syntax format is: (logical expression)? (expression 1): (expression 2). When the value of the logical expression is true, the value of expression1 is returned, otherwise, the value of expression2 is returned.
(2)if-else statement
The general if-else statement is like this,

if(逻辑表达式){或if(逻辑表达式)语句1; 
语句1;[else语句2;] 
}else{ 
语句2; 
}

The if statement is a statement specially used to implement the selection structure. It decides to run the two operations based on the true or false of the logical condition. A sort of. For example: the conditions for a leap year are: a year that is divisible by 4 but not divisible by 100, or is divisible by 400. Therefore, the judgment of leap year can be expressed by a logical expression.
Let’s determine whether 2012 is a leap year:

publicclassIsLeapYear{ 
publicstaticvoidmain(Stringargs[]){ 
intyear=2012; 
booleanleapYear=(year%4==0&&year%100!=0||year%400==0); 
if(leapYear){ 
System.out.println(year+"是闰年"); 
}else{ 
System.out.println(year+"不是闰年"); 
} 
} 
}


Nesting of if-else statements:
Statement 1 or statement 2 in the if-else statement can also be an if-else statement, thus forming Nesting of if-else statements. The most commonly used one is the multi-selection structure nested with elseif statements:

if()语句1 
elseif(逻辑表达式)语句2 
........ 
elseif(逻辑表达式)语句n 
else语句n+1

When the program is running, it will judge the logical conditions from top to bottom. Once a certain logical condition is met (that is, the value of the Boolean expression is true), the corresponding statement, then it will no longer judge other conditions, go directly to the structure exit, and run the subsequent statements of the if statement. Of course, in this multi-choice structure, it is easier to confuse the matching relationship between if and else. The Java language stipulates that else is always paired with the if closest to it. If necessary, you can use curly braces {} to change the pairing relationship. In fact, we often do this.

The above is the content of java study notes (introduction)_program flow control structure and methods. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!


Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
How does IntelliJ IDEA identify the port number of a Spring Boot project without outputting a log?How does IntelliJ IDEA identify the port number of a Spring Boot project without outputting a log?Apr 19, 2025 pm 11:45 PM

Start Spring using IntelliJIDEAUltimate version...

How to elegantly obtain entity class variable names to build database query conditions?How to elegantly obtain entity class variable names to build database query conditions?Apr 19, 2025 pm 11:42 PM

When using MyBatis-Plus or other ORM frameworks for database operations, it is often necessary to construct query conditions based on the attribute name of the entity class. If you manually every time...

How to use the Redis cache solution to efficiently realize the requirements of product ranking list?How to use the Redis cache solution to efficiently realize the requirements of product ranking list?Apr 19, 2025 pm 11:36 PM

How does the Redis caching solution realize the requirements of product ranking list? During the development process, we often need to deal with the requirements of rankings, such as displaying a...

How to safely convert Java objects to arrays?How to safely convert Java objects to arrays?Apr 19, 2025 pm 11:33 PM

Conversion of Java Objects and Arrays: In-depth discussion of the risks and correct methods of cast type conversion Many Java beginners will encounter the conversion of an object into an array...

How do I convert names to numbers to implement sorting and maintain consistency in groups?How do I convert names to numbers to implement sorting and maintain consistency in groups?Apr 19, 2025 pm 11:30 PM

Solutions to convert names to numbers to implement sorting In many application scenarios, users may need to sort in groups, especially in one...

E-commerce platform SKU and SPU database design: How to take into account both user-defined attributes and attributeless products?E-commerce platform SKU and SPU database design: How to take into account both user-defined attributes and attributeless products?Apr 19, 2025 pm 11:27 PM

Detailed explanation of the design of SKU and SPU tables on e-commerce platforms This article will discuss the database design issues of SKU and SPU in e-commerce platforms, especially how to deal with user-defined sales...

How to set the default run configuration list of SpringBoot projects in Idea for team members to share?How to set the default run configuration list of SpringBoot projects in Idea for team members to share?Apr 19, 2025 pm 11:24 PM

How to set the SpringBoot project default run configuration list in Idea using IntelliJ...

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

MantisBT

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.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools