Java multiple inheritance?

Post your Java discussions here
Post Reply
kokilasoral
Newbie
Posts: 0
Joined: Fri Jun 03, 2016 10:17 am

Java multiple inheritance?

Post by kokilasoral »

Hi, everyone
C++ is my 1st language but I now I want to learn Java.
C++ accepts multiple inheritance.
Eg:
Class d
Protected class q(), class w()
{
}
But Java doesn't accept multiple inheritance.
Java use interfaces to contrivance multiple inheritance.
how to use interface to achieve multiple inheritance.
Thank you

Martyn
Site Admin
Site Admin
Posts: 4491
Joined: Fri Jun 10, 2011 8:15 am
Location: St. Neots

Re: Java multiple inheritance?

Post by Martyn »

Have you used C++ to control our scopes, and are now looking to try and do the same with Java ?
Martyn
Technical Support Manager

Sanjay
User
User
Posts: 3
Joined: Mon Jun 20, 2016 1:08 pm

Re: Java multiple inheritance?

Post by Sanjay »

Multiple inheritance:

Code: Select all

public class Example {
	public interface Animal {}
	public interface FourLegs {}
	public interface EightLegs {}
	
	public class Insect {}

	public abstract class Spider extends Insect implements Animal, EightLegs {}
	
	
	public class Pegasus implements Animal, FourLegs {}


}

Post Reply