Jump to content

How to extend multiple classes in java


newcoder1010

Recommended Posts

Java does not permit extending multiple classes. If you want the functionality of multiple classes, it's best to make instances of those classes as properties of your object and then use properties and methods of those instances.

class C {
  public A a;
  public B b;
}
Link to comment
Share on other sites

  • 6 months later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...