search
HomeJavajavaTutorialExample tutorial of operators and type conversion in java
Example tutorial of operators and type conversion in javaJun 25, 2017 am 10:39 AM
javatypeConvertoperator

Type conversion:

Automatic type conversion (implicit conversion) of sorting from small to large
When a small data type is operated on a large data type, the result will be automatically converted to the large type
 byte char short -->int -->long -->float -->double
Note: byte char short are not converted to each other. They participate in operations and are first converted to int type

Format: data type variable with a large range = data type value with a small range


Forced type conversion (display conversion)
Large type data can be converted if the loss of precision can be tolerated Force conversion to small type data
Format: Small range data type Variable = (Small range data type) Large range data type

Concept of operator:  

For constants The symbols that operate on variables are called operators

The concept of expressions:

Using operators to connect constants and a formula that conforms to Java syntax can be called an expression

Commonly used operators: arithmetic operators, assignment operators, relational operators, logical operators, ternary operators


Arithmetic operators: + - * / % ++ --
in java The result of the division operation between two int type data is also an int. The decimal point is cut off directly

Code demonstration:
public static void main(String[] args) {

 int a = 10;
 int b = 20;

 System.out.println(a + b); // 30
 System.out.println(a - b); // -10
System.out.println(a * b); // 200
System.out.println(a / b); // 0
System.out.println(1/2.0); //0.5
 System.out.println(1/3);//0
 System.out.println(2/3);//0
 System.out.println("======= ====================");
// When + is used between a string and a number, it indicates a link and ultimately a new string is obtained
int d = 10;
System.out.println("Heyhey"+10);//Heyhey 10
System.out.println("Heyhey"+10+10);//Heyhey 1010
System.out.println("Heyhey"+(10+10));//Heyhey 20
System.out.println(10+10+"Heyhey");//20Heyhey

System .out.println("===========================");
System.out.println(10%3); // Find the remainder (modulo)
System.out.println(7%2);// 1
System.out.println("============== =========");
 // 'a' ---> 97 'b'---> 98
 // 'A' ---> 65
 // '0'---> 48
 System.out.println('a' + 10);// 107
 System.out.println('A' + 10);// 75
 System.out.println('0' + 10);// 58
 System.out.println((char)('a' + 1));//b

}

++ operator:

When the ++ operator is used alone, whether the ++ symbol is on the left or right side of the variable, it means that the variable will be incremented by 1
When ++ When operators are used together, if the ++ symbol is on the left side of the variable, the emphasis is on changing it first (incrementing it by 1) and then matching it,
If it is on the right side of the variable, it emphasizes matching it first and then changing it (incrementing it by 1)

-- Operator:

When -- is used alone, whether -- is on the left or right side of a variable, it means decrementing the variable by 1
When -- is used in combination, if -- is on the left side of the variable, the emphasis is to change (decrement by 1) first and then match it,
If in On the right side of the variable, emphasize matching first and then changing (decrease by 1)
Code demonstration:
public static void main(String[] args) {

  int b = 10;
  System.out.println(b++);//10
  System.out.println(b);/// 11
  System.out.println(" ==================");
int c = 20;
System.out.println(--c);// 19
System .out.println(c);// 19

int d = 30;
System.out.println(d--);//30
System.out.println(d) ;// 29
}


Assignment operator:


Basic assignment operator:=
Extended assignment operator:+= -= *= /= %=
Change the left and the result on the right is assigned to the left
Note: the left cannot be a constant
implies a forced type conversion
Benefits: more efficient
Code demonstration:
public static void main(String[] args) {

 int a = 10;
 a+=2; // a = a + (2) --- > a = 10 + (2) ---> a = 12
 System.out.println(a);// 12

 int b = 20;
 b-=2; // b = b - (2) ---> b = 18
 System.out.println(b);//18

 short c = 10;
  //c = (short)(c + 10); // short = short + int ---> short = int
 c+=10;
 System.out.println(c);//20

}


Relational operators:

==(equal) !=(not equal) >(greater than) =(greater than or equal to) Relational operators are all of boolean type, either true or false
Code demonstration:
public static void main(String[] args) {
// TODO Auto-generated method stub
int a = 10;
 int b = 20;
 int c = 10;

 System.out.println( a == b);// false
 System.out.println( a == c);// true
System.out.println("======================");
System.out. println( a != b);// true
 System.out.println( a != c);// false
 System.out.println("============ ===========");
System.out.println( a >= b);// false
System.out.println( a >= c);/ / true
 System.out.println("======================");
 System.out.println( a  System.out.println( a  System.out.println("================ =======");
System.out.println( a > b); // false
System.out.println( a > c); // false
System .out.println("======================");
System.out.println( a  System.out.println( a  System.out.println("======================" );

}


Logical operators:

Logical operators are used to connect Boolean expressions and the final result value is Boolean.
In Java, it cannot be written as 3or: | Operation rule: If one of both sides is true, the result of the entire expression is true. Only if both sides are false at the same time, the result is false
Not: ! Operation rule: true Change false False to true
XOR: ^ Operation rules: If both sides are the same, it is false, if they are different, it is true
Code demonstration:
public static void main(String[] args) {

System .out.println(true & true ); // T

 System.out.println(false & true );// F
 System.out.println(true & false );// F 
 System .out.println(false & false );// F
System.out.println("=========================") ;
 System.out.println(true | true ); // T
 System.out.println(false | true );// T
 System.out.println(true | false );/ / T
 System.out.println(false | false );// F
 System.out.println("====================== ====");
System.out.println(!true);// F
System.out.println(!false);// T
System.out.println("= ========================");
System.out.println(true ^ true); // F
System.out. println(false ^ true );// T
 System.out.println(true ^ false );// T
 System.out.println(false ^ false );// F

}

Short circuit and: &&
Short circuit or: ||
Advantage: higher efficiency
Short circuit and: &&
The basic operation rules are similar to &, the difference is that if the left is false, the right side is not executed, the result is false
short circuit or: ||
The basic operation rules are similar to |, the difference is that if the left side is true, the right side is not executed, the result true is directly returned
三Meta-expression:
Expression 1 ? Result 1 : Result 2

Execution process:
First calculate the result of expression 1
If the result is true, return result 1, otherwise return Result 2
Code demonstration: (Get the larger of two numbers. )
(int x=3,y=4,z;z = (x>y)?x:y;//The z variable stores the large number of the two numbers.)
public class Demo09Operator {
public static void main(String[] args) {
  int a = 10;
  int b = 20;
  int c = (a > b) ? a : b;
System.out.println("c:" + c);
 }
}

(Compare whether two data are the same)
public class Demo10Operator {
public static void main(String[] args) {
// Define two variables of type int
  int a = 10;
  int b = 20;

  boolean flag = (a == b) ? true : false;
    // boolean flag = (a == b);
   System. out.println(flag);
}
}

(Get the maximum value among three integers)
public class Demo11Operator {
public static void main(String[] args ) {
// Define three int type variables
  int a = 10;
  int b = 30;
  int c = 20;

// Compare the two first Large value of integer
   int temp = ((a > b) ? a : b);
   int max = ((temp > c) ? temp : c);
  System.out.println ("max:" + max);
 }

}

The above is the detailed content of Example tutorial of operators and type conversion in java. For more information, please follow other related articles on the PHP Chinese website!

Statement
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
带你搞懂Java结构化数据处理开源库SPL带你搞懂Java结构化数据处理开源库SPLMay 24, 2022 pm 01:34 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于结构化数据处理开源库SPL的相关问题,下面就一起来看一下java下理想的结构化数据处理类库,希望对大家有帮助。

Java集合框架之PriorityQueue优先级队列Java集合框架之PriorityQueue优先级队列Jun 09, 2022 am 11:47 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于PriorityQueue优先级队列的相关知识,Java集合框架中提供了PriorityQueue和PriorityBlockingQueue两种类型的优先级队列,PriorityQueue是线程不安全的,PriorityBlockingQueue是线程安全的,下面一起来看一下,希望对大家有帮助。

完全掌握Java锁(图文解析)完全掌握Java锁(图文解析)Jun 14, 2022 am 11:47 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于java锁的相关问题,包括了独占锁、悲观锁、乐观锁、共享锁等等内容,下面一起来看一下,希望对大家有帮助。

一起聊聊Java多线程之线程安全问题一起聊聊Java多线程之线程安全问题Apr 21, 2022 pm 06:17 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于多线程的相关问题,包括了线程安装、线程加锁与线程不安全的原因、线程安全的标准类等等内容,希望对大家有帮助。

详细解析Java的this和super关键字详细解析Java的this和super关键字Apr 30, 2022 am 09:00 AM

本篇文章给大家带来了关于Java的相关知识,其中主要介绍了关于关键字中this和super的相关问题,以及他们的一些区别,下面一起来看一下,希望对大家有帮助。

Java基础归纳之枚举Java基础归纳之枚举May 26, 2022 am 11:50 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于枚举的相关问题,包括了枚举的基本操作、集合类对枚举的支持等等内容,下面一起来看一下,希望对大家有帮助。

java中封装是什么java中封装是什么May 16, 2019 pm 06:08 PM

封装是一种信息隐藏技术,是指一种将抽象性函式接口的实现细节部分包装、隐藏起来的方法;封装可以被认为是一个保护屏障,防止指定类的代码和数据被外部类定义的代码随机访问。封装可以通过关键字private,protected和public实现。

归纳整理JAVA装饰器模式(实例详解)归纳整理JAVA装饰器模式(实例详解)May 05, 2022 pm 06:48 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于设计模式的相关问题,主要将装饰器模式的相关内容,指在不改变现有对象结构的情况下,动态地给该对象增加一些职责的模式,希望对大家有帮助。

See all articles

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 agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.