Advertisement
Guest User

Untitled

a guest
Mar 7th, 2012
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.22 KB | None | 0 0
  1. public class ObjectCastingEx {
  2.    
  3.     Animal ani = new Dog(); //implicit casting
  4.     Dog dg1 = new Animal()//compile-error
  5.     Dog dg2 = (Dog)ani;//explicit casting
  6.  
  7. }
  8.  
  9. class Animal {
  10.    
  11. }
  12.  
  13. class Dog extends Animal{
  14.    
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement