operators in java

letanlong

New member
** #Java #Operators #Programming #Tutorial #giáo dục **

** Người vận hành trong Java **

Các toán tử được sử dụng để thực hiện các hoạt động trên các biến và giá trị.Java có nhiều toán tử, bao gồm các toán tử số học, logic, quan hệ và bitwise.

** Các toán tử số học **

Các toán tử số học được sử dụng để thực hiện các hoạt động toán học trên các số.Bảng sau đây liệt kê các toán tử số học trong Java:

|Nhà điều hành |Mô tả |
| --- | --- |
|+ |Bổ sung |
|- |Phép trừ |
|* |Phép nhân |
|/ |Sư đoàn |
|% |Mô đun |

** toán tử logic **

Các toán tử logic được sử dụng để kết hợp các biểu thức boolean.Bảng sau liệt kê các toán tử logic trong Java:

|Nhà điều hành |Mô tả |
| --- | --- |
|&& |Và |
||||Hoặc |
|!!|Không |

** Các nhà khai thác quan hệ **

Các toán tử quan hệ được sử dụng để so sánh hai giá trị.Bảng sau liệt kê các toán tử quan hệ trong Java:

|Nhà điều hành |Mô tả |
| --- | --- |
|== |Bằng |
|! = |Không bằng |
|> |Lớn hơn |
|<|Ít hơn |
|> = |Lớn hơn hoặc bằng |
|<= |Nhỏ hơn hoặc bằng |

** Các toán tử bitwise **

Các toán tử bitwise được sử dụng để thực hiện các hoạt động bitwise trên các số nguyên.Bảng sau liệt kê các toán tử bitwise trong Java:

|Nhà điều hành |Mô tả |
| --- | --- |
|& |Và |
|||Hoặc |
|^ |Xor |
|~ |Không |
|<< |SHIF trái |
|>> |Đúng sự thay đổi |

**Ưu tiên điều hành**

Thứ tự mà các toán tử được đánh giá được gọi là ưu tiên toán tử.Bảng sau đây liệt kê các nhà điều hành được ưu tiên trong Java, từ cao nhất đến thấp nhất:

|Nhà điều hành |Ưu tiên |
| --- | --- |
|() |1 |
|!!|2 |
|~ |2 |
|++ |3 |
|- |3 |
|* |4 |
|/ |4 |
|% |4 |
|+ |5 |
|- |5 |
|<< |6 |
|>> |6 |
|<|7 |
|> |7 |
|<= |7 |
|> = |7 |
|== |8 |
|! = |8 |
|& |9 |
|^ |10 |
|||11 |

** Ví dụ về nhà điều hành **

Sau đây là một số ví dụ về các nhà khai thác trong Java:

`` `java
int x = 10;
int y = 20;

// Phép cộng
int z = x + y;
System.out.println (z);// 30

// trừ
z = x - y;
System.out.println (z);// -10

// Phép nhân
z = x * y;
System.out.println (z);// 200

// Phân công
z = x / y;
System.out.println (z);// 0,5

// Mô đun
z = x % y;
System.out.println (z);// 10

// VÀ
boolean b1 = true;
Boolean B2 = Sai;

Boolean B3 = B1 && B2;
System.out.println (B3);// SAI

// HOẶC
B3 = B1 ||B2;
System.out.println (B3);// ĐÚNG VẬY

// KHÔNG
B3 =! B1;
System.out.println (B3);// SAI

// Tương đương với
int a = 10;
int b = 10;

boolean c = a == b;
System.out.println (c);// ĐÚNG VẬY

// không bằng
c = a! = B;
System.out.println (c);// SAI
`` `

** Người vận hành là một phần thiết yếu của Java
=======================================
**#Java #Operators #Programming #Tutorial #education**

**Operators in Java**

Operators are used to perform operations on variables and values. Java has a wide variety of operators, including arithmetic, logical, relational, and bitwise operators.

**Arithmetic Operators**

The arithmetic operators are used to perform mathematical operations on numbers. The following table lists the arithmetic operators in Java:

| Operator | Description |
|---|---|
| + | Addition |
| - | Subtraction |
| * | Multiplication |
| / | Division |
| % | Modulus |

**Logical Operators**

The logical operators are used to combine Boolean expressions. The following table lists the logical operators in Java:

| Operator | Description |
|---|---|
| && | AND |
| || | OR |
| ! | NOT |

**Relational Operators**

The relational operators are used to compare two values. The following table lists the relational operators in Java:

| Operator | Description |
|---|---|
| == | Equal to |
| != | Not equal to |
| > | Greater than |
| < | Less than |
| >= | Greater than or equal to |
| <= | Less than or equal to |

**Bitwise Operators**

The bitwise operators are used to perform bitwise operations on integers. The following table lists the bitwise operators in Java:

| Operator | Description |
|---|---|
| & | AND |
| | | OR |
| ^ | XOR |
| ~ | NOT |
| << | Left shift |
| >> | Right shift |

**Operator Precedence**

The order in which operators are evaluated is called operator precedence. The following table lists the operator precedence in Java, from highest to lowest:

| Operator | Precedence |
|---|---|
| () | 1 |
| ! | 2 |
| ~ | 2 |
| ++ | 3 |
| -- | 3 |
| * | 4 |
| / | 4 |
| % | 4 |
| + | 5 |
| - | 5 |
| << | 6 |
| >> | 6 |
| < | 7 |
| > | 7 |
| <= | 7 |
| >= | 7 |
| == | 8 |
| != | 8 |
| & | 9 |
| ^ | 10 |
| | | 11 |

**Operator Examples**

The following are some examples of operators in Java:

```java
int x = 10;
int y = 20;

// Addition
int z = x + y;
System.out.println(z); // 30

// Subtraction
z = x - y;
System.out.println(z); // -10

// Multiplication
z = x * y;
System.out.println(z); // 200

// Division
z = x / y;
System.out.println(z); // 0.5

// Modulus
z = x % y;
System.out.println(z); // 10

// AND
boolean b1 = true;
boolean b2 = false;

boolean b3 = b1 && b2;
System.out.println(b3); // false

// OR
b3 = b1 || b2;
System.out.println(b3); // true

// NOT
b3 = !b1;
System.out.println(b3); // false

// Equal to
int a = 10;
int b = 10;

boolean c = a == b;
System.out.println(c); // true

// Not equal to
c = a != b;
System.out.println(c); // false
```

**Operators are an essential part of Java
 
Join ToolsKiemTrieuDoGroup
Back
Top
AdBlock Detected

We get it, advertisements are annoying!

Sure, ad-blocking software does a great job at blocking ads, but it also blocks useful features of our website. For the best site experience please disable your AdBlocker.

I've Disabled AdBlock