top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How does multiple inheritance work in JAVA ?

0 votes
299 views
How does multiple inheritance work in JAVA ?
posted Aug 22, 2014 by Ganesh

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

2 Answers

0 votes

Multiple inheritance works in Java through the use of the interfaces.

answer Aug 22, 2014 by Rbi
0 votes

Frankly say Java does not support Multiple inheritance in case of class but in case of Interface its support multiple inheritance.

Implementation:

By default in java all Data member and member function of parent class is available to child class. if they are not private.

answer Aug 22, 2014 by Amit Kumar Pandey
...