Skip to content

Instantly share code, notes, and snippets.

@iyengarajay
Created June 1, 2016 13:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iyengarajay/c88935acef7eaf81e92184bbdaa8fa0e to your computer and use it in GitHub Desktop.
Save iyengarajay/c88935acef7eaf81e92184bbdaa8fa0e to your computer and use it in GitHub Desktop.
interface One {
default public void callMe(){
System.out.println("One:callMe...");
}
}
interface Two
{
default public void callMe()
{
System.out.println("Two:callMe...");
}
}
public class ConcreteClass implements One, Two
{
public static void main(String[] args)
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment