not implementing all of the methods of interface. is it possible?

Apurva Patil picture Apurva Patil · Jul 11, 2012 · Viewed 81.8k times · Source

Is there any way to NOT implement all of the methods of an interface in an inheriting class?

Answer

The point of an interface is to guarantee that an object will outwardly behave as the interface specifies that it will

If you don't implement all methods of your interface, than you destroy the entire purpose of an interface.