in Education by

How will you call a default method of an interface in a class in Java8?

Please log in or register to answer this question.

1 Answer

0 votes
by

How will you call a default method of an interface in a class in Java8? Using super keyword along with interface name. interface Vehicle { default void print() { System.out.println("I am a vehicle!"); } } class Car implements Vehicle { public void print() { Vehicle.super.print(); } }

Related questions

...