Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8107709
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T00:52:04+00:00 2026-06-06T00:52:04+00:00

Java doesn’t support multiple inheritance for abstract classes, but I’m trying to do the

  • 0

Java doesn’t support multiple inheritance for abstract classes, but I’m trying to do the equivalent of this in C++:

//this is Java-style pseudocode
public abstract class Rectangle{
    public abstract double getHeight();
    public abstract double getWidth();
    public double getHeight(){
        return getWidth()*getHeight();
    }
}

public abstract class Container{
    public abstract void printTypes();
    public abstract void printEachElement();
    public void printContainerStuff(){
        System.out.print("Has the types: ");
        printTypes();
        System.out.print("List of elements: ");
        printEachElement();
    }
}

public abstract class Array extends Rectangle, Container{ //this can't be done in Java, but what about C++?

}

Is there an equivalent of Java abstract classes in C++ that would make it possible to do this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-06T00:52:05+00:00Added an answer on June 6, 2026 at 12:52 am

    C++ allows multiple inheritance. So that is allowed in C++.

    And the equivalent of Java’s abstract class in C++ is a class that has at least one pure virtual member function.

    So the equivalent of the Java code in C++ would be this:

    class Rectangle
    {
      public:
        virtual double getHeight() = 0;
        virtual double getWidth() = 0;
        double getHeight(){
            return getWidth()*getHeight();
        }
    };
    
    class Container(){
      public:
        virtual void printTypes() = 0;
        virtual void printEachElement() =0;
    };
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am aware that Java doesn't support multiple inheritance. But if I have to
Java doesn't allow multiple inheritance, but it allows implementing multiple interfaces. Why?
Possible Duplicates: Why does Java allow multiple inheritance from interfaces but not from abstract/concrete
I know that java doesn't support multiple inheritance. So how can i fulfill following
This doesn't have to be Java, but it's what I'm dealing with. Also, not
Why doesn't this class compile? import java.util.*; public class Caesar { public static void
But it doesn't work -meaning the java code is not executed. Although the batch
How come java doesn't allow the following generic return type: public <T extends Enum<T>
Obviously, Java doesn't support unsigned number types natively, and that's not going to change
I've written the following, but Java doesn't like it! int limit = Math.round(Math.sqrt(inputNumber)); Suggestions

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.