Java运算符
2022/1/9 1:03:25
本文主要是介绍Java运算符,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
Java语言支持如下运算符: 优先级 ()
-
算术运算符:+,-,*,/,%(取余)(模),++,--
-
赋值预算符: = 例: ( int a = 10;)
-
关系运算符: > , < , >= ,<= , == , != (不等于), instanceof
-
逻辑预算符: && , || , ! (与或非)
-
位运算符: & , | , ^ , >> , << , >>>
-
条件运算符 ? :
-
扩展赋值运算符: += , -= , *= , /=
package operator; public class Demo01 { public static void main(String[] args) { //二元运算符 //Ctrl + d :复制当前行到下一行 int a = 10; int b = 20; int c = 25; int d = 25; System.out.println(a+b); System.out.println(a-b); System.out.println(a*b); System.out.println(a/(double)b); } }
package operator; public class Demo02 { public static void main(String[] args) { long a = 123123123123123L; int b = 123; short c = 10; byte d = 8; System.out.println(a+b+c+d);//long System.out.println(b+c+d);//int System.out.println(c+d);//int } }
package operator; public class Demo03 { public static void main(String[] args) { //关系运算符返回的结果: 正确,错误,布尔值 int a = 10; int b = 20; int c = 21; //取余叫做模运算 System.out.println(c%a);//c/a 21/10 = 2....1 System.out.println(a>b); System.out.println(a<b); System.out.println(a==b); System.out.println(a!=b); } }
package operator; public class Demo04 { public static void main(String[] args) { //++ -- 自增,自减 一元运算符 int a = 3; System.out.println(a); int b = a++;//执行完这个代码后,先给b赋值,再自增 // a++ a = a + 1; System.out.println(a); // a = a + 1; int c = ++a;//执行完这个代码前,先自增,再给c赋值 System.out.println(a); System.out.println(b); System.out.println(c); //幂运算 2^3 2*2*2 = 8 很多运算我们会使用 工具类操作! double pow = Math. pow(3,2); System.out.println(pow); } }
这篇关于Java运算符的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-26Mybatis官方生成器资料详解与应用教程
- 2024-11-26Mybatis一级缓存资料详解与实战教程
- 2024-11-26Mybatis一级缓存资料详解:新手快速入门
- 2024-11-26SpringBoot3+JDK17搭建后端资料详尽教程
- 2024-11-26Springboot单体架构搭建资料:新手入门教程
- 2024-11-26Springboot单体架构搭建资料详解与实战教程
- 2024-11-26Springboot框架资料:新手入门教程
- 2024-11-26Springboot企业级开发资料入门教程
- 2024-11-26SpringBoot企业级开发资料详解与实战教程
- 2024-11-26Springboot微服务资料:新手入门全攻略