Java 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&&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; }
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)!

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

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

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

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

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

PHP is a scripting language widely used on the server side, especially suitable for web development. 1.PHP can embed HTML, process HTTP requests and responses, and supports a variety of databases. 2.PHP is used to generate dynamic web content, process form data, access databases, etc., with strong community support and open source resources. 3. PHP is an interpreted language, and the execution process includes lexical analysis, grammatical analysis, compilation and execution. 4.PHP can be combined with MySQL for advanced applications such as user registration systems. 5. When debugging PHP, you can use functions such as error_reporting() and var_dump(). 6. Optimize PHP code to use caching mechanisms, optimize database queries and use built-in functions. 7

PHP and Python each have their own advantages, and the choice should be based on project requirements. 1.PHP is suitable for web development, with simple syntax and high execution efficiency. 2. Python is suitable for data science and machine learning, with concise syntax and rich libraries.

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

PHP is suitable for web development, especially in rapid development and processing dynamic content, but is not good at data science and enterprise-level applications. Compared with Python, PHP has more advantages in web development, but is not as good as Python in the field of data science; compared with Java, PHP performs worse in enterprise-level applications, but is more flexible in web development; compared with JavaScript, PHP is more concise in back-end development, but is not as good as JavaScript in front-end development.

PHP and Python each have their own advantages and are suitable for different scenarios. 1.PHP is suitable for web development and provides built-in web servers and rich function libraries. 2. Python is suitable for data science and machine learning, with concise syntax and a powerful standard library. When choosing, it should be decided based on project requirements.

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.
