Home Java javaTutorial [Java Getting Started Notes] Java Language Basics (3): Operators

[Java Getting Started Notes] Java Language Basics (3): Operators

Dec 22, 2016 am 11:21 AM

Introduction

An operator is a special symbol. An operator is a specific symbol that operates one or more operands through certain operation rules and generates a result. The effective combination of an operator and operands is called an expression.

Operators in Java are mainly divided into the following categories:

Assignment operators

Arithmetic operators

Relational operators

Logical operators

Conditional operators (ternary operators)

Bitwise operators

Assignment operator

The assignment operator is used to assign a value to a variable or constant. The symbol of the assignment operator is "=".

Example

int a = 1;  //定义时直接赋值int b;int c;
b = 
c = 2;  //可以在一个语句内为多个变量赋值
int d = b + 3;   //变量运算后再赋值,先执行右边,再执行左边
Copy after login

Arithmetic operators

Java supports basic mathematical operations such as addition, subtraction, multiplication, division and remainder. They are the following:

[Java Getting Started Notes] Java Language Basics (3): Operators

Addition operator: +

double a = 1.1;double b = 1.2;double sum = a + b;
System.out.PRintln(sum); //Output 2.3

Subtraction operator: -

double a = 2.2;double b = 1.1;double sub = a - b;
System.out.println(sub); //Output 1.1

Multiplication operator: *

int a = 11;double b = 1.2;double multiply = a * b;
System.out.println(multiply); //Output 1.32

Division operator: /

The division operator is a bit special: if the operation Both values ​​​​are int, and the result obtained is also of type int. The decimal point will be removed directly and will not be rounded.

int a = 10; int b = 4; double c = a/b; System.out.println(c); //The original result of 10chu 4 is 2.5, but the result of dividing two int type numbers is an int type number. Although the result value is assigned to double,
          //But the output result becomes 2.0, which is equivalent to removing the decimal point when the operation is completed, and then converting it to 2.0double a2 = 5.2;double b2 = 3.1;double c2 = a2/b2; System.out.println(c2); //Operation on two double values, output result: 1.6774193548387097System.out.println(5 / 0.0); //The divisor is double type 0.0, and the output is negative infinity System.out.println(5 / 0); //If the divisor is 0, an error will be reported during runtime

Remainder operator: %

int a = 5;int b = 3;double c = 3.2;
System.out.println(a%b) ; //Output 2System.out.println(a%c); //1.7999999999999998System.out.println(0%5); //Output 0System.out.println(5%0); //An error will occur during operation

Find the negative: -

int i = -1;int i2 = -i;
System.out.println(i2); //Output 1

Self-increment: ++

int i = 1;
i++ ; //Equivalent to adding 1 to the value of i; System.out.println(i); //Output 2

The self-increasing symbol can be placed in front of the variable or behind the variable. Put it in front first Add 1 to the operand, and then perform the operation of the expression. Putting it after it will do the opposite.

int i1 = 1;int i2 = 1;int i3 = i1++; //At this time, the value of i3 is 1 and the value of i1 is 2; it first assigns the value of i1 to i3, and then adds 1 to i1 ;int i4 = ++i2; //At this time, the value of i4 is 2, and the value of i2 is also 2; it first adds 1 to the value of i2, and then assigns the value to i4;

Decrement: --

The function is similar to self-adding

int i1 = 1;int i2 = 1;int i3 = i1++; //At this time, the value of i3 is 1 and the value of i1 is 0; it first assigns the value of i1 to i3, then decrement i1 by 1; int i4 = ++i2; //At this time, the value of i4 is 0, and the value of i2 is also 0; it first decrements the value of i2 by 1, and then assigns the value to i4;

Relational operators (comparison operators)

Relational operators can test the relationship between two operands (but will not change the value of the operand). The result of the relational expression is boolean true/false:

[Java Getting Started Notes] Java Language Basics (3): Operators

System.out.println(4 == 4); //The result is trueSystem.out.println(4 != 3); //The result is trueSystem.out.println(true == false); //The result is false

Logical operators

Logical operators are used to operate boolean type variables or constants

[Java Getting Started Notes] Java Language Basics (3): Operators

See examples

System.out.println(!true); //The result is falseSystem.out.println (2 > 1 && 1 > 1); //The result is falseSystem.out.println(2 > 1 || 1 > 1); //The result is trueSystem.out.println(true ^ false); / /The result is true, XOR, which is equivalent to inverting the first previous value true, and then performing an "OR" operation

Let's take a look at the difference between | and ||

int a = 1; int b = 1;if(a == 1 | b++ > 1){
System.out.println(b); //The output value of b is 2, bitwise OR, although the result on the left side of the | symbol is true, it still Will execute the code to the right of the | symbol}

and change | to ||

int a = 1;int b = 1;if(a == 1 || b++ > 1){
System.out.println(b); //The output value of b is 1, and the result on the left side of the || symbol is true, the code to the right of the || symbol will no longer be executed}

Conditional operator (ternary operator)

Its general form is:

Expression 1 ? Expression 2 : Expression 3

Determine whether to execute expression 2 or expression 3 based on the result of expression 1. If the result of expression 1 is true, execute expression 2, otherwise execute expression 3;

Conditional operators can be substituted in some cases Small if...else statement.

String s = 1 > 2 ? "1 is greater than 2" : "1 is not greater than 2";
System.out.println(s); //Output 1 is not greater than 2

bit operator

bit operation Symbols are two data that participate in operations, and operations are performed based on binary bits. There are seven bitwise operators in Java: bitwise AND (&), bitwise OR (|), bitwise NOT (~), bitwise XOR (^), left shift operator (>), unsigned right shift operator (>>>).

For detailed introduction, please refer to the following article:

http://www.cnblogs.com/yezhenhan/archive/2012/06/20/2555849.html

Priority of operators

In many cases , an expression consists of multiple operators, and the priority determines the calculation order of the operators:

[Java Getting Started Notes] Java Language Basics (3): Operators

Although operators have priorities, an expression will be evaluated sequentially according to the priority of the expression operators, but In actual programming, if an expression is very long, it is not recommended to write it like this. Instead, it is written in several steps, because the readability is too poor when written together.

The above is [Java Introduction Notes] Java Language Basics (3): The content of operators. 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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

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)

Golang error: 'invalid use of ... operator' How to solve it? Golang error: 'invalid use of ... operator' How to solve it? Jun 24, 2023 pm 05:54 PM

For Golang developers, "invaliduseof...operator" is a common error. This error usually occurs when using variable-length parameter functions. It will be detected at compile time and indicate which parts have problems. This article will introduce how to solve this error. 1. What is a variable-length parameter function? A variable-length parameter function is also called a variable-parameter function. It is a function type in the Golang language. Using variable-length parameter functions, you can define multiple ones as follows

Introduction to smart agriculture application development in Java language Introduction to smart agriculture application development in Java language Jun 10, 2023 am 11:21 AM

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,

Mind map of Python syntax: in-depth understanding of code structure Mind map of Python syntax: in-depth understanding of code structure Feb 21, 2024 am 09:00 AM

Python is widely used in a wide range of fields with its simple and easy-to-read syntax. It is crucial to master the basic structure of Python syntax, both to improve programming efficiency and to gain a deep understanding of how the code works. To this end, this article provides a comprehensive mind map detailing various aspects of Python syntax. Variables and Data Types Variables are containers used to store data in Python. The mind map shows common Python data types, including integers, floating point numbers, strings, Boolean values, and lists. Each data type has its own characteristics and operation methods. Operators Operators are used to perform various operations on data types. The mind map covers the different operator types in Python, such as arithmetic operators, ratio

How to convert JSON array to CSV in Java? How to convert JSON array to CSV in Java? Aug 21, 2023 pm 08:27 PM

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

Analysis of the meaning and usage of += operator in C language Analysis of the meaning and usage of += operator in C language Apr 03, 2024 pm 02:27 PM

The += operator is used to add the value of the left operand to the value of the right operand and assign the result to the left operand. It is suitable for numeric types and the left operand must be writable.

ChatGPT Java: How to build an accurate semantic search engine ChatGPT Java: How to build an accurate semantic search engine Oct 24, 2023 am 10:21 AM

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

Detailed explanation of binary tree structure in Java Detailed explanation of binary tree structure in Java Jun 16, 2023 am 08:58 AM

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

Introduction to image processing algorithms in Java language Introduction to image processing algorithms in Java language Jun 10, 2023 pm 10:03 PM

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

See all articles