Java - Abstract Class And Abstract Method

  1. // abstract class demonstration    
  2.     
  3. abstract class one    
  4.  {    
  5.    abstract void show1();     
  6.     
  7.    void show2()    
  8.      {    
  9.        System.out.println("\nWelcome");    
  10.      }    
  11.    }    
  12.     
  13. class  two extends one    
  14.   {    
  15.     void show1()    
  16.      {    
  17.        System.out.println("\nHave a Nice Day");    
  18.      }    
  19.   }    
  20.     
  21. class ssvAbstract1    
  22.  {    
  23.    public static void main(String arg[])    
  24.     {    
  25.       two t = new two();    
  26.       t.show1();    
  27.       t.show2();    
  28.     }    
  29.   }