Home Java javaTutorial Java Study Notes (Introduction)_Program flow control structure and methods

Java Study Notes (Introduction)_Program flow control structure and methods

Dec 19, 2016 pm 02:05 PM
java control structure

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&&y<3;
x>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; 
}
Copy after login

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+"不是闰年"); 
} 
} 
}
Copy after login


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
Copy after login

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 of this Website
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

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

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Perfect Number in Java Perfect Number in Java Aug 30, 2024 pm 04:28 PM

Guide to Perfect Number in Java. Here we discuss the Definition, How to check Perfect number in Java?, examples with code implementation.

Weka in Java Weka in Java Aug 30, 2024 pm 04:28 PM

Guide to Weka in Java. Here we discuss the Introduction, how to use weka java, the type of platform, and advantages with examples.

Smith Number in Java Smith Number in Java Aug 30, 2024 pm 04:28 PM

Guide to Smith Number in Java. Here we discuss the Definition, How to check smith number in Java? example with code implementation.

Java Spring Interview Questions Java Spring Interview Questions Aug 30, 2024 pm 04:29 PM

In this article, we have kept the most asked Java Spring Interview Questions with their detailed answers. So that you can crack the interview.

Break or return from Java 8 stream forEach? Break or return from Java 8 stream forEach? Feb 07, 2025 pm 12:09 PM

Java 8 introduces the Stream API, providing a powerful and expressive way to process data collections. However, a common question when using Stream is: How to break or return from a forEach operation? Traditional loops allow for early interruption or return, but Stream's forEach method does not directly support this method. This article will explain the reasons and explore alternative methods for implementing premature termination in Stream processing systems. Further reading: Java Stream API improvements Understand Stream forEach The forEach method is a terminal operation that performs one operation on each element in the Stream. Its design intention is

TimeStamp to Date in Java TimeStamp to Date in Java Aug 30, 2024 pm 04:28 PM

Guide to TimeStamp to Date in Java. Here we also discuss the introduction and how to convert timestamp to date in java along with examples.

Java Program to Find the Volume of Capsule Java Program to Find the Volume of Capsule Feb 07, 2025 am 11:37 AM

Capsules are three-dimensional geometric figures, composed of a cylinder and a hemisphere at both ends. The volume of the capsule can be calculated by adding the volume of the cylinder and the volume of the hemisphere at both ends. This tutorial will discuss how to calculate the volume of a given capsule in Java using different methods. Capsule volume formula The formula for capsule volume is as follows: Capsule volume = Cylindrical volume Volume Two hemisphere volume in, r: The radius of the hemisphere. h: The height of the cylinder (excluding the hemisphere). Example 1 enter Radius = 5 units Height = 10 units Output Volume = 1570.8 cubic units explain Calculate volume using formula: Volume = π × r2 × h (4

Create the Future: Java Programming for Absolute Beginners Create the Future: Java Programming for Absolute Beginners Oct 13, 2024 pm 01:32 PM

Java is a popular programming language that can be learned by both beginners and experienced developers. This tutorial starts with basic concepts and progresses through advanced topics. After installing the Java Development Kit, you can practice programming by creating a simple "Hello, World!" program. After you understand the code, use the command prompt to compile and run the program, and "Hello, World!" will be output on the console. Learning Java starts your programming journey, and as your mastery deepens, you can create more complex applications.

See all articles