- 1、本文档共11页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
java第四章运算符
第四章运算符
183页复合赋值运算符
考试注意事项
复合赋值运算符右边表达式总是视为放在括号内
x *= 2 + 5;
x = (x * 2) + 5; // incorrect precedence
x = x * (2 + 5);
关系运算符==、!=、、=、、=
=赋值
==等于
186页
引用变量相等性:是否引用同一对象。
import javax.swing.JButton;
class CompareReference {
public static void main(String[] args) {
JButton a = new JButton(Exit);
JButton b = new JButton(Exit);
JButton c = a;
System.out.println(Is reference a == b? + (a == b));
System.out.println(Is reference a == c? + (a == c));
}
}
Is reference a == b? false
Is reference a == c? true
枚举相等性:是否引用相同枚举常量
class EnumEqual {
enum Color {RED, BLUE}
public static void main(String[] args) {
Color c1 = Color.RED;
Color c2 = Color.RED;
if(c1 == c2) { System.out.println(==); }
if(c1.equals(c2)) { System.out.println(dot equals); }
} }
output:
==
dot equals
188页
instanceof比较,返回true或false
对象 instanceof 类或接口
如果对象任一超类实现了某个接口,我们说该对象属于这种接口类型
interface Foo { }
class A implements Foo { }
class B extends A { }
...
A a = new A();
B b = new B();
the following are true:
a instanceof Foo
b instanceof A
b instanceof Foo // implemented indirectly
测试null引用是一个类实例是合法的,结果总是false
class InstanceTest {
public static void main(String [] args) {
String a = null;
boolean b = null instanceof String;
boolean c = a instanceof String;
System.out.println(b + + c);
}
}
prints this: false false
记住数组是对象,总是Object的实例
int [] nums = new int[3];
if (nums instanceof Object) { } // result is true
instanceof 编译错误
不能使用instanceof跨两个不同的类层次结构执行测试:(同一继承树)
class Cat { }
class Dog {
public static void main(String [] args) {
Dog d = new Dog();
System.out.println(d instanceof Cat);
}
}
//Compilation fails—theres no way d could ever refer to a Cat or a subtype of Cat.
189页 表4-1
算术运算符
%求余
15%4=? 3
+字符串连接运算符
String a = String;
int b = 3;
int c = 7;
System.out.println(a + b + c);//String37
int b = 2;
System.out.println( + b + 3); // 23
System.out.println(b + 3); //5
191页++、――递增递减运算符
192页条件运算符
表达式1?表达式2:表达式3
193页逻辑运算符
和||短路运算
和| 非短路运算
int z = 5;
if(++z 5 || ++z 6) z++; // z = 7 after this code
versus:
i
文档评论(0)