new InterfaceInherit().start();
if (this instanceof InterfaceInherit) System.out.println("This is InterfaceInherit"); if (this instanceof Thread) System.out.println("This is Thread"); if (this instanceof Runnable) System.out.println("This is Thread -- Interfaces ARE inherited!");