北京市加强应急物资保障体系建设
2022-01-10
【资料图】
Person p = new Student(); // 这里假设 Person 是父类,Student 是子类if (p instanceof Person) { // p 的运行类型是Student,而Student是Person的子类,所以这里会输出 System.out.println("p 是 Person 类型的实例");}if (p instanceof Student) {// p 的运行类型是Student,所以这里会输出 System.out.println("p 是 Student 类型的实例");}
Shape shape = new Circle(); // 创建一个 Circle 类型的对象,并将其赋值给 Shape 类型的变量if (shape instanceof Shape) { System.out.println("shape 实现了 Shape 接口");}if (shape instanceof Rectangle) { System.out.println("shape 是 Rectangle 类型的实例");}
标签:
上一篇: 书法进校园 墨香润学子|环球快报
下一篇: 最后一页