2.2 数据类型
2.2.1 Java数据类型
2.3 常用运算符

Java提供了一组运算符丰富的操纵变量。我们可以把所有的Java操作符为以下几组:

  • 算术运算符

  • 关系运算符

  • 位运算符

  • 逻辑运算符

  • 赋值运算符

  • 其它运算符

算术运算符:

算术运算符用于在数学表达式中,他们是在代数中使用的方法相同。下表列出了算术运算符:

假设整型变量A=10和变量B=20,则:

算术运算实例

运算符 描述 实例
+ Addition - Adds values on either side of the operator A + B = 30
- Subtraction - Subtracts right hand operand from left hand operand A - B = -10
* Multiplication - Multiplies values on either side of the operator A * B = 200
/ Division - Divides left hand operand by right hand operand B / A = 2
% Modulus - Divides left hand operand by right hand operand and returns remainder B % A = 0
++ Increment - Increases the value of operand by 1 B++ =21
-- Decrement - Decreases the value of operand by 1 B-- =19

关系运算符:

有下列由Java语言支持的关系运算符

假设变量A=10和变量B=20,则:

关系运算符实例

运算符 描述 实例
== Checks if the values of two operands are equal or not, if yes then condition becomes true. (A == B) is not true.
!= Checks if the values of two operands are equal or not, if values are not equal then condition becomes true. (A != B) is true.
> Checks if the value of left operand is greater than the value of right operand, if yes then condition becomes true. (A > B) is not true.
< Checks if the value of left operand is less than the value of right operand, if yes then condition becomes true. (A < B) is true.
>= Checks if the value of left operand is greater than or equal to the value of right operand, if yes then condition becomes true. (A >= B) is not true.
<= Checks if the value of left operand is less than or equal to the value of right operand, if yes then condition becomes true. (A <= B) is true.

按位运算符:

Java定义了几个位运算符,它可以应用到整数类型,长型,整型,短整型,字符和字节。

位运算符作用于位,并执行逐位操作。假设当a =60和b= 13; 现在以二进制格式,他们将会如下:

a = 0011 1100

b = 0000 1101

-----------------

a&b = 0000 1100

a|b = 0011 1101

a^b = 0011 0001

~a  = 1100 0011

下表列出了按位运算符:

假设整型变量A=60和变量B=13,则:

位运算实例

运算符 描述 实例
& Binary AND Operator copies a bit to the result if it exists in both operands. (A & B) will give 12 which is 0000 1100
| Binary OR Operator copies a bit if it exists in either operand. (A | B) will give 61 which is 0011 1101
^ Binary XOR Operator copies the bit if it is set in one operand but not both. (A ^ B) will give 49 which is 0011 0001
~ Binary Ones Complement Operator is unary and has the effect of 'flipping' bits. (~A ) will give -61 which is 1100 0011 in 2's complement form due to a signed binary number.
<< Binary Left Shift Operator. The left operands value is moved left by the number of bits specified by the right operand. A << 2 will give 240 which is 1111 0000
>> Binary Right Shift Operator. The left operands value is moved right by the number of bits specified by the right operand. A >> 2 will give 15 which is 1111
>>> Shift right zero fill operator. The left operands value is moved right by the number of bits specified by the right operand and shifted values are filled up with zeros. A >>>2 will give 15 which is 0000 1111

逻辑运算符:

下表列出了逻辑运算符:

假设布尔变量A=ture,变量B=false,那么:

逻辑运算符实例

运算符 描述 实例
&& Called Logical AND operator. If both the operands are non-zero, then the condition becomes true. (A && B) is false.
|| Called Logical OR Operator. If any of the two operands are non-zero, then the condition becomes true. (A || B) is true.
! Called Logical NOT Operator. Use to reverses the logical state of its operand. If a condition is true then Logical NOT operator will make false. !(A && B) is true.

赋值运算符:

有下列由Java语言支持赋值操作符:

赋值运算符实例

运算符 描述 实例
= Simple assignment operator, Assigns values from right side operands to left side operand C = A + B will assign value of A + B into C
+= Add AND assignment operator, It adds right operand to the left operand and assign the result to left operand C += A is equivalent to C = C + A
-= Subtract AND assignment operator, It subtracts right operand from the left operand and assign the result to left operand C -= A is equivalent to C = C - A
*= Multiply AND assignment operator, It multiplies right operand with the left operand and assign the result to left operand C *= A is equivalent to C = C * A
/= Divide AND assignment operator, It divides left operand with the right operand and assign the result to left operand C /= A is equivalent to C = C / A
%= Modulus AND assignment operator, It takes modulus using two operands and assign the result to left operand C %= A is equivalent to C = C % A
<<= Left shift AND assignment operator C <<= 2 is same as C = C << 2
>>= Right shift AND assignment operator C >>= 2 is same as C = C >> 2
&= Bitwise AND assignment operator C &= 2 is same as C = C & 2
^= bitwise exclusive OR and assignment operator C ^= 2 is same as C = C ^ 2
|= bitwise inclusive OR and assignment operator C |= 2 is same as C = C | 2

其它运算符

Java 语言支持一些其他的运算符。

条件运算符 ( ? : ):

条件运算符也被称为三元运算符。该运算符包括三个操作数,用于评估计算布尔表达式。此运算符的目标是确定哪些值应分配给该变量。可写为:

variable x = (expression) ? value if true : value if false

下面是例子:

public class Test {public static void main(String args[]){int a , b;a = 10;b = (a == 1) ? 20: 30;System.out.println( "Value of b is : " +  b );b = (a == 10) ? 20: 30;System.out.println( "Value of b is : " + b );}}

这将产生以下结果:

Value of b is : 30Value of b is : 20

instanceof运算符:

这个操作符只用于对象引用变量。操作检查对象是否为特定类型(类类型或接口类型)。instanceof 运算符被写为:

( Object reference variable ) instanceof  (class/interface type)

如果运算符的左侧提到的变量的对象传递了IS-A检查右侧的类/接口类型,那么结果将为 true。下面是例子:

public class Test {public static void main(String args[]){String name = "James";// following will return true since name is type of Stringboolean result = name instanceof String;  System.out.println( result );}}

这将产生以下结果:

true

这个操作符仍然会返回true,如果被比较的对象是分配在右侧的类型兼容。下面是一个例子:

class Vehicle {}public class Car extends Vehicle {public static void main(String args[]){Vehicle a = new Car();boolean result =  a instanceof Car;System.out.println( result );}}

这将产生以下结果:

true

优先级的Java操作符:

运算符优先级决定的条件在表达式中分组。这会影响一个表达式如何计算。某些运算符的优先级高于其它,例如,乘法运算符的优先级比加法运算高:

例如x= 7+3* 2;这里x被赋值13,而不是20,因为运算符*的优先级高于+,所以它首先被乘以3 * 2,然后加7。

这里,具有最高优先级的操作出现在表格上方,那些具有最低出现在底部。在表达式中,优先级较高的运算符将首先评估计算。

分类  运算符 关联 
Postfix  () [] . (dot operator) Left to right 
Unary  ++ - - ! ~ Right to left 
Multiplicative   * / %  Left to right 
Additive   + -  Left to right 
Shift   >> >>> <<   Left to right 
Relational   > >= < <=   Left to right 
Equality   == !=  Left to right 
Bitwise AND  Left to right 
Bitwise XOR  Left to right 
Bitwise OR  Left to right 
Logical AND  &&  Left to right 
Logical OR  ||  Left to right 
Conditional  ?:  Right to left 
Assignment  = += -= *= /= %= >>= <<= &= ^= |=  Right to left 
Comma  Left to right 

转载于:https://www.cnblogs.com/wmhayt/p/4332939.html

Java私人学习笔记——第2章 数据类型和运算符相关推荐

  1. 《Java疯狂讲义》第3章(数据类型和运算符):博主李俊德的阅读笔记与知识拓展

    一.问题背景 博主在准备应聘的笔试.面试时,再次采用了多年以来的Java工具书<Java疯狂讲义>,并决定在每章详细复习后都要在博客中写下详细的阅读笔记. 二.阅读笔记与知识拓展--< ...

  2. java基础学习 --- 第二节 变量、数据类型和运算符

    java基础学习 - 第二节 变量.数据类型和运算符 一.变量 1.变量就是会发生改变的数据,程序运行时,这些数据以变量的形式被保存到计算机的内存中.如图 2.使用变量的步骤:     声明变量 - ...

  3. 【深入理解Java虚拟机学习笔记】第二章 Java 内存区域与内存溢出异常

    最近想好好复习一下java虚拟机,我想通过深读 [理解Java虚拟机 jvm 高级特性与最佳实践] (作者 周志明) 并且通过写一些博客总结来将该书读薄读透,这里文章内容仅仅是个人阅读后简短总结,加强 ...

  4. java JDK8 学习笔记——第13章 时间与日期

    第十三章 时间与日期 13.1 认识时间与日期 13.1.1 时间的度量 1.格林威治标准时间GMT  格林威治标准时间的正午是太阳抵达天空最高点之时.现在已经不作为标准时间使用. 2.世界时UT 世 ...

  5. 《Play for Java》学习笔记(七)数据类型解析——Body parser

    一.什么是body parser? body parser(不知道具体如何翻译,~~~~(>_<)~~~~ )指一个HTTP请求 (如POST和PUT操作)所包含的文本内容(body),这 ...

  6. 学习java第三天,今天是数据类型和运算符(2)

    1.基本数据类型的类型转换 1.不同的基本数据类型之间进行运算时需要进行类型转换. 2.boolean类型与其他基本类型不能进行类型的转换(既不能进行自动类型的提升,也不能强制类型转换), 否则,将编 ...

  7. 第三章.数据类型和运算符

    Java语言是一门强类型语言,强类型包含两方面含义: 1.所有变量必须先声明.后使用 2.指定类型的变量只能接受类型与之匹配的值. 基本数据类型大致分为两类: 1.数值类型:整形,字符型,浮点型. 2 ...

  8. java基础知识讲解(一)数据类型和运算符

    Java是一种强类型语言,每个变量都必须声明其数据类型. Java的数据类型可分为两大类:基本数据类型(primitive data type)和引用数据类型(reference data type) ...

  9. java 一些容易忽视的小点-数据类型和运算符篇

    注释 文档注释:   以"/**"开头以"*/"结尾,注释中包含一些说明性的文字及一些JavaDoc标签(后期写项目时,可以生成项目的API) 行注释:   以 ...

  10. linux shell学习笔记(二) 变量和运算符

    1.什么是shell变量?本地变量.环境变量.变量替换(显示变量).位置变量.标准变量.特殊变量.影响变量的命令 2.本地变量:本地变量在用户现在的shell生命期的脚本中使用 variable-na ...

最新文章

  1. python【力扣LeetCode算法题库】19-删除链表的倒数第N个节点
  2. JAVA并发之多线程基础(5)
  3. html 星空效果,使用css实现星空效果!
  4. java继承序列化_java中序列化之子类继承父类序列化
  5. 解一元一次方程的那些坑(记洛谷P1022题RE的经历,Java语言描述)
  6. ElasticSearch配置说明
  7. Hibernate知识点总结
  8. Qt Creator 自动补齐变慢的解决
  9. 单词卡片被遗落的单词 その2
  10. node.js的初步见解
  11. qcustomplot 游标吸附_QCustomplot使用分享(九) 绘制图表-多功能游标
  12. led数字字体_led电视质量排行榜
  13. 学计算机的是不是都非常木讷,北大学神韦东奕​是正常人吗?内向木讷是缺点​,拿不出手?​...
  14. 马云也进军游戏了?还赚了上亿元,网友:马化腾先生怎么看呢?
  15. Java的23种设计模式---(21)观察者模式
  16. redis incr mysql_redis命令_INCR
  17. 生鲜o2o配送开源系统,包括Android源码+SSH后台管理系统
  18. linux 源码编译 ./configure 的配置和用法
  19. 并发--带着问题去学习
  20. 和《盗梦空间》无关。

热门文章

  1. Sphinx 2.2.3 安装和配置,英文数字中文搜索
  2. 阶段1 语言基础+高级_1-3-Java语言高级_05-异常与多线程_第2节 线程实现方式_9_Thread类的常用方法_获取线程名称...
  3. javaweb filter
  4. 赛码网算法: 格子游戏
  5. nested exception is java.io.FileNotFoundException: class path resource [spring/spring-datasource-mog
  6. PHP报错: Can't use method return value in write context
  7. java面向对象的基本概念
  8. 两种方式(xml+代码)构建SqlSessionFactory+完整实现
  9. eclipse导入Javaweb文件出错解决
  10. glibc的几个有用的处理二进制位的内置函数(转)