View Single Post
  #2 (permalink)  
Old 05-10-2008, 09:37 AM
ram101 ram101 is offline
Senior Member
 
Join Date: Jun 2007
Posts: 274
Default

An abstract class can have instance methods that implement a default behavior. An Interface can only declare constants and instance methods, but cannot implement default behavior and all methods are implicitly abstract. An interface has all public members and no implementation. An abstract class is a class which may have the usual flavors of class members (private, protected, etc.), but has some abstract methods
Reply With Quote