What are statements in java
In Java, a statement is the smallest unit, and each statement must use a semicolon as the terminator.
In addition, Java does not have any other restrictions on statements. Developers are free to write statements in a way that suits their own style.
For example, you can put a statement in multiple lines. The example is as follows:
String str = "Apple " +"Banner "+"Pear " +" Orange";
Since Java uses a semicolon as the terminator of a statement, the above 3 lines of code will be considered by Java. one statement since there is only one semicolon in these 3 lines. However, we do not recommend writing statements this way.
Also, writing multiple statements on one line is allowed because of the use of semicolons as delimiters. For example, the following sample code is also correct.
int a = 0,b,c;b=a+10;b++;c=a*b;System.out.println(c);
The above puts 5 statements on one line.
In order to make the program statements more beautiful, easier to read and eliminate errors, the following rules are generally used to format the source code:
1. Write only one in a line statement, and use spaces and blank lines to ensure that the statement is easy to read.
2. Use the Tab key to indent to the right within each compound statement.
3. Braces are always placed on a separate line to facilitate checking whether they match.
Empty statement
The so-called empty statement does nothing in the program and does not contain any actual statements. In programs, empty statements are mainly used as empty loop bodies.
The syntax format of an empty statement is as follows:
; // 其实就是一个分号
Executing an empty statement transfers control to the end point of the statement. This way, if the empty statement is reachable, the end point of the empty statement is also reachable.
Expression statement
In many high-level languages, there are special assignment statements. In Java, assignment is an operator, so there are only assignment expressions. Adding a semicolon after the assignment expression makes it a standalone statement.
The following are sample statements for some expressions:
3.1415926; (a+b)/2; x*y*z-y+(20-x);
These expressions can be recognized by the Java compiler, but since they do not perform any operations on the program, they have no meaning.
General expression statements should be able to complete an operation, such as modifying the value of a variable or serving as a function parameter. This is done by specifying a variable on the left side of the expression to store the value of the expression, or by passing the expression to a function.
The following is the modified expression statement:
pi=3.1415926; output(pi); // 将pi的值传递到output()函数中作为参数 sum=(a+b)/2; printf("%f",sum); // 将sum的值传递到printf()函数输出 temp=x*y*z-y+(20-x); // 将表达式的值保存到temp变量中
Compound statement
A compound statement is also called a statement block, which is a A combination of statements so that multiple statements can be treated as a single statement.
The syntax format of a compound statement is as follows:
{ statement-list // 语句列表 }
You can see that it consists of an optional statement-list expanded within curly brackets. statement-list is a list consisting of one or more statements. If statement-list does not exist, the statement block is said to be empty.
The execution rules are as follows:
1. If the statement block is empty, control goes to the end point of the statement block.
2. If the statement block is not empty, control goes to the statement list. When control reaches the end of the statement list, control goes to the end of the statement.
Example 1:
Create a statement block containing 3 statements.
{ width = 10; // 为width变量赋值 height = 90; // 为height变量赋值 area = width * height; // 计算width变量和height变量的乘积 }
After the above code is executed, the value of the sum variable is 900. The above statement block contains 3 statements within curly brackets. The first statement assigns a value to the width variable, the second statement assigns a value to the height variable, and the third statement multiplies width and height and stores the result in the sum variable.
Recommended tutorial: java introductory tutorial
The above is the detailed content of What are statements in java. For more information, please follow other related articles on the PHP Chinese website!

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

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.

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 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.

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.

Spring Boot simplifies the creation of robust, scalable, and production-ready Java applications, revolutionizing Java development. Its "convention over configuration" approach, inherent to the Spring ecosystem, minimizes manual setup, allo
