'instanceof'操作符用于什么?
我了解到Java有实例操作符。你能详细说明它在哪里使用,它的优点是什么吗?
'instanceof'操作符用于什么?
我了解到Java有实例操作符。你能详细说明它在哪里使用,它的优点是什么吗?
Instanceof是一个关键字,可用于测试对象是否为指定类型。
例子:
public class MainClass {
public static void main(String[] a) {
String s = "Hello";
int i = 0;
String g;
if (s instanceof java.lang.String) {
// This is going to be printed
System.out.println("s is a String");
}
if (i instanceof Integer) {
// This is going to be printed as autoboxing will happen (int -> Integer)
System.out.println("i is an Integer");
}
if (g instanceof java.lang.String) {
// This case is not going to happen because g is not initialized and
// therefore is null and instanceof returns false for null.
System.out.println("g is a String");
}
}
这是我的消息来源。
基本上,检查对象是否是特定类的实例。 当您有一个超类或接口类型的对象的引用或参数,并且需要知道实际对象是否具有其他类型(通常是更具体的类型)时,通常会使用它。
例子:
public void doSomething(Number param) {
if( param instanceof Double) {
System.out.println("param is a Double");
}
else if( param instanceof Integer) {
System.out.println("param is an Integer");
}
if( param instanceof Comparable) {
//subclasses of Number like Double etc. implement Comparable
//other subclasses might not -> you could pass Number instances that don't implement that interface
System.out.println("param is comparable");
}
}
请注意,如果您必须经常使用该操作符,则通常暗示您的设计存在一些缺陷。因此,在一个设计良好的应用程序中,您应该尽可能少地使用该操作符(当然,这个一般规则也有例外)。
Instanceof可以用来确定对象的实际类型:
class A { }
class C extends A { }
class D extends A { }
public static void testInstance(){
A c = new C();
A d = new D();
Assert.assertTrue(c instanceof A && d instanceof A);
Assert.assertTrue(c instanceof C && d instanceof D);
Assert.assertFalse(c instanceof D);
Assert.assertFalse(d instanceof C);
}