Jul 06 2009 06:14 PM 1779 4 Multiple Inheritance upendrakumar Why multiple inheritance is not applied in Java? vinodkashyap Profile Answers by vinodkashyap Questions by vinodkashyap Jul 9th, 2009 Lets take an exampleClass A{ public void clear(){ }}Class A{ public void clear(){ }}Class B extends A{ public void clear(){ }}Class C extends A{ public void clear(){ }}Now If multiple inhertence is al... rhingarajiya Profile Answers by rhingarajiya Questions by rhingarajiya Jul 8th, 2009 In Multiple Inheritance, Diamond problem may arise. So Java supports multiple interface inheritance instaed of multiple inheritance. Answer Question Select Best Answer
Jul 06 2009 06:14 PM 1779 4 Multiple Inheritance upendrakumar Why multiple inheritance is not applied in Java? vinodkashyap Profile Answers by vinodkashyap Questions by vinodkashyap Jul 9th, 2009 Lets take an exampleClass A{ public void clear(){ }}Class A{ public void clear(){ }}Class B extends A{ public void clear(){ }}Class C extends A{ public void clear(){ }}Now If multiple inhertence is al... rhingarajiya Profile Answers by rhingarajiya Questions by rhingarajiya Jul 8th, 2009 In Multiple Inheritance, Diamond problem may arise. So Java supports multiple interface inheritance instaed of multiple inheritance. Answer Question Select Best Answer
vinodkashyap Profile Answers by vinodkashyap Questions by vinodkashyap Jul 9th, 2009 Lets take an exampleClass A{ public void clear(){ }}Class A{ public void clear(){ }}Class B extends A{ public void clear(){ }}Class C extends A{ public void clear(){ }}Now If multiple inhertence is al...
rhingarajiya Profile Answers by rhingarajiya Questions by rhingarajiya Jul 8th, 2009 In Multiple Inheritance, Diamond problem may arise. So Java supports multiple interface inheritance instaed of multiple inheritance.