|
java
|
|
|
|
|
Bookmarks
|
|
|
|
|
|
|
interface vs abstract class : Java Glossary
|
|
|
|
You can offer the best of both worlds, an interface and an abstract class. Implementors can ignore your abstract class if they choose. The only drawback of doing that is calling methods via their interface name is slightly slower than calling them via their abstract class name.
http://mindprod.com/jgloss/interfacevsabstract.htm
saved under Interview Questions/Abstract vs Interface
by
java
|
|
|