+ 1
how we use a inheritance in java
4 Answers
+ 2
use the extends key word
eg:
public class ant extends insect{
}
// then you will be able to make use of of the method in the supper class which is the insect
+ 1
use extends keyword
ex:
class Father{}
class Son extends Father{}
+ 1
throw extends key word
0
thanks friends