instance of 运算符和getClass()方法都可以用来检查一个对象所属的类.instance of 运算符仅测试一个对象的类型:getClass()方法与==或!=结合使用,测试两个对象是不是用相同的类的创建.具体细节如下描述: instance of 运算符 instance of 运算符查看一个对象的类型是否为第2个自变量给出的类型.instance of 运算符的语法如下: Object instance of Class_Name 如果Object是Class_Name类型的…