In Java, they say that Multiple Inheritance is not supported. Also its a fact, that each class in Java extends class Object. So if I write :
public class ThreadInstance extends Thread {
}
How does this compile? ThreadInstance here is actually extending Thread as well as Object. Isn't it multiple Inheritance here.