seems like MyClass extending both Object class (implicitly) and Thread class (explicitly).Doesn't that means multiple-inheritance?
Originally posted by narain ashwin: I am suspecting my understanding that JAVA doesn't support multiple inheritance Consider this class public class MyClass { } We can say that this class extends the Object class.But if I modify the above class to implement threading public class MyClass extends Thread { } seems like MyClass extending both Object class (implicitly) and Thread class (explicitly).Doesn't that means multiple-inheritance?