First you would have to design the class hierarchy; perhaps on paper and pencil. Then you create the classes so that one depends on another, using the extends keyword.
Who create Java & when? Why he create java ? What are mane functions of it?
define the data types
Class
Because, the parent class also needs to be initialized when you create an object in the inheritance hierarchy.
Multi-Platform Applications and Applets.
NO, we cannot create a contructor for an interface in java.
Because it is one of the most important and widely used inheritance concepts in Java. In multi level inheritance a class directly inherits features from one class and indirectly inherits features form other classes that are in the inheritance hierarchy.
how to create setup file in core java
Object is the topmost class in the Java Class hierarchy. There is no Class above Object. All classes in Java are implicitly derived from Object.
A Java compiler.
The top level class in Java is class Object. Every other class inherits from Object and therefore Object is the top most in the class hierarchy. If you extend a class from Object such as class Animal and further extend Animal with class Dog then the hierarchy is as follows: Object | Animal | Dog Code for this hierachy is as follows: class Animal { } class Dog extends Animal { } We don't need to write class Animal extends Object because every class extends from Object so it does not need to be stated.
multi threading is used ,when we use no.of threads at one time the system will not support to run the multi threads ,in that case multi threading is used to solve the problem occured in threading multi tasking.