Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  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. }