Specifications

Sun Services
Java™ Programming Language
Module 6, slide 21 of 43
Copyright 2005 Sun Microsystems, Inc. All Rights Reserved. Sun Services, Revision F
Casting Objects
public void doSomething(Employee e) {
if ( e instanceof Manager ) {
Manager m = (Manager) e;
System.out.println(
This is the manager of
+ m.getDepartment());
}
// rest of operation
}