Discussion Forum

How is inheritance in C++ different from Java?

Re: How is inheritance in C++ different from Java?

by Ashutosh Bhatt -
Number of replies: 0
In C++, we can use the multiple inheritance. In Java, we cannot create multiple inheritance directly. To reduce ambiguity, java supports interfaces to get the effect of multiple inheritance.