GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Tech FAQs  >  Programming  >  Java

 Print  |  
Question:   What is the difference between abstract class & Interface.



September 09, 2005 03:31:27 #6
 kranthi   Member Since: Visitor    Total Comments: N/A 

RE: What is the difference between abstract class &am...
 

in interface all the methods should be declared as abstract

in abstact class all methods need not be declared as abstract and if we do not provide the implementations of all the methods of the abstract class the class that extends this class should be declared as abstract

     

 

Back To Question