[Java Introduction Notes] Java Language Basics (4): Process Control
Process control refers to the way to control the direction of the program while it is running. It is mainly divided into the following categories:
Sequential structure
Sequential structure, as the name suggests, means that the program is executed sequentially from top to bottom. There is no judgment or jump in the middle.
Branch structure
Java provides two branch structures: if and switch. The if statement uses Boolean expressions or Boolean values to judge the branch control, while the switch statement uses integers, String types, and enumeration types. .
if statement
if statement uses Boolean expressions or Boolean values to judge and control branches. There are mainly three structures:
if statement
if (condition) {
//Statement
}
Execution trend
Example:
int score = 65;if(score >= 60){
System.out.PRintln("You passed");
}
if…else statement
if (condition) {
Example:
int score = 65 ;if(score >= 60){
System.out.println("You passed, congratulations");
System.out.println("Failed, cleaning toilets for three months");
} //statement } else if (condition) {
//statement } else {
//statement
}
Example:
Evaluation of students’ final exam scores
Score>=60: Moderate
Score
int score = 70; //Examination score if ( score >= 90 ) {
System.out.println("Excellent");} else if (score >= 80 ) {
System.out. println("Good");} else if (score >= 60 ) {
System.out.println("Medium");} else {
System.out.println("Poor");}
contains another if statement in the if statement
If (condition 1) { if (condition 2) { if (condition 3) {
}else{
}
}………
}
Normally, the statement blocks of these types of judgment statements are wrapped in {} brackets, but if the statement has only one sentence, you don’t need to use curly braces, for example
boolean b = true;if( b)
System.out.println("You can not use curly braces"); else
System.out.println("It is recommended to put curly braces");
Break;
}
case "Passed":
System.out.println("Performing well"); break;
case "Failed":
break;
default:System.out.println("Didn't come for the exam? Call your parents");
break;}
int i = 1;switch(i){
case 1:
System.out.println("Won the first place");
break;
case 2:
System.out.println("Won the second place" );
break; case 3:
System.out.println("Get third place");
break;
default:
System.out.println("You are not the top three");
break;
}
Pay attention to the break statement when using it. If you miss it, hey!
Comparison of switch and multiple if
Same points:
Both can implement multi-branch structures
Differences:
Switch: can only handle conditional judgments of equal values, and the conditions are equal to integer variables or character variables Value judgment
Multiple if: The processing also includes other if structures in the else part, which is especially suitable for situations when a certain variable is in a certain range
Loop structure
Loop statements are also called iteration statements. Loop statements can satisfy Under the condition of conditions, repeatedly execute a certain code. The cycle statement includes:
while cycle
while (cycle condition) {// meet the conditions and continue to execute the cycle; Operation}
i++;
}
do-while loopdo {
Loop operation //Perform the loop operation first} while (loop condition); //If the conditions are met, the loop continues to execute; otherwise, Loop exit
System.out.println("Unlucky, need to clean the toilet");
} while(i
loop operation;
}
}
Control loop structurebreak statementin a certain Sometimes, we need to forcefully terminate the loop when a certain condition occurs, and we can use break to complete this function. For example:
System.out.println("Complete a circle") ;
}
In the above example, 10 laps should have been completed, but when reaching the 8th lap, I couldn’t hold on anymore and broke, and the rest will not be executed.
System.out.println("Complete one Lap");
}
He was supposed to run 10 laps, but he actually only ran 9 laps.

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

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

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

Hot Topics

With the development of the times, the agricultural field has also begun to upgrade and transform with the help of modern scientific and technological means, and smart agriculture has emerged as the times require. As a computer programming language with excellent performance and strong portability, Java has high popularity and application value, and has become one of the important solutions for smart agricultural application development. This article aims to introduce the development process, application scenarios and advantages of smart agricultural applications in Java language. 1. Development process of smart agricultural applications in Java language. The development process of smart agricultural applications is divided into requirements analysis,

JSON can be used as a data exchange format, it is lightweight and language independent. A JSONArray can parse text strings to produce vector-like objects and supports the java.util.List interface. We can convert JSON array to CSV format using org.json.CDL class, which provides a static method toString() for converting JSONArray to comma-separated text. We need to import the org.apache.commons.io.FileUtils package to store data in a CSV file using the writeStringToFile() method. Syntaxpublicstaticj

ChatGPTJava: How to build an accurate semantic search engine, requiring specific code examples. Introduction: With the rapid development of the Internet and the explosive growth of information, people often encounter poor quality and inconsistent search results in the process of obtaining the required information. Exact question. In order to provide more accurate and efficient search results, semantic search engines came into being. This article will introduce how to use ChatGPTJava to build an accurate semantic search engine and give specific code examples. 1. Understanding ChatGPTJ

Introduction to image processing algorithms in Java language With the advent of the digital age, image processing has become an important branch of computer science. In computers, images are stored in digital form, and image processing changes the quality and appearance of the image by performing a series of algorithmic operations on these numbers. As a cross-platform programming language, Java language has rich image processing libraries and powerful algorithm support, making it the first choice of many developers. This article will introduce commonly used image processing algorithms in the Java language, and

Binary trees are a common data structure in computer science and a commonly used data structure in Java programming. This article will introduce the binary tree structure in Java in detail. 1. What is a binary tree? In computer science, a binary tree is a tree structure in which each node has at most two child nodes. Among them, the left child node is smaller than the parent node, and the right child node is larger than the parent node. In Java programming, binary trees are commonly used to represent sorting, searching and improving the efficiency of data query. 2. Binary tree implementation in Java In Java, binary tree

There are three common process control structures in python, namely sequence structure, selection structure and loop structure. Detailed introduction: 1. Sequential structure, which is the simplest structure in the program. According to the order of the code, it is executed from top to bottom; 2. Selection structure, this structure can be judged according to certain conditions and choose to execute different codes. Blocks, in Python, usually use "if-elif-else" statements to implement selection structures; 3. Loop structures, which can repeatedly execute a piece of code until it stops when a certain condition is met, etc.

Java language is a programming language widely used in the financial field. Due to its powerful functions and efficient performance, Java language has become the preferred language for financial institutions to develop software. This article will introduce the importance of Java language in financial application development and introduce some common financial applications. 1. Application of Java language in the financial field Java language has been widely used in the financial field. Its main advantages include: 1. Cross-platform capability. The Java language has cross-platform capability, which means that the same Java language

Methods and steps for implementing image style transfer by connecting to Baidu AI interface in Java language Introduction: Image style transfer is an interesting technology that has wide applications in art and media creation. Baidu AI provides an API for image style migration, allowing developers to easily use this function. This article will introduce how to use Java language to connect to Baidu AI interface, implement methods and steps for image style migration, and provide sample code. Step 1: To apply for access to Baidu AI interface, you must use the image style migration AP provided by Baidu AI.
