Difference between abstract class and interface
Answer Posted / s.arun
Main difference is methods of a Java interface are implicitly abstract and cannot have implementations. A Java abstract class can have instance methods that implements a default behavior.
Variables declared in a Java interface is by default final. An abstract class may contain non-final variables.
Members of a Java interface are public by default. A Java abstract class can have the usual flavors of class members like private, protected, etc..
Java interface should be implemented using keyword “implements”; A Java abstract class should be extended using keyword “extends”.
An interface can extend another Java interface only, an abstract class can extend another Java class and implement multiple Java interfaces.
A Java class can implement multiple interfaces but it can extend only one abstract class.
Interface is absolutely abstract and cannot be instantiated; A Java abstract class also cannot be instantiated, but can be invoked if a main() exists.
In comparison with java abstract classes, java interfaces are slow as it requires extra indirection.
For m ore detail click on http://edugoing.com/qna/index.php?qa=1&qa_1=what-the-difference-between-an-interface-and-abstract-class
Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
How do I stop a thread?
What is password attribute of the textbox control of .net mobile? : Microsoft dot net mobile
Explain different pipelining hazards and how are they eliminated? : Dot net architecture
Explain the types of memory management? : .NET Architecture
What is the difference between an application and a program?
Explain about developer benefit from memory management?
When do I need to use gc.keepalive?
What are bindings?
What is new in the .net 2.0 class library?
What is cache coherency and how is it eliminated? : .NET Architecture
how we can fire event in databound column in datagrid without using button?
What is textview control of .net mobile? : Microsoft dot net mobile
What is .net mobile lists. : Microsoft dot net mobile
Can you explain scriptmanager control?
Explain .net mobile input controls? : Microsoft dot net mobile