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 7813297
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T04:48:24+00:00 2026-06-02T04:48:24+00:00

I have 3 classes. They have all similar integers, methods etc… class Country{ int

  • 0

I have 3 classes. They have all similar integers, methods etc…

class Country{

      int a,b;
public:
      Country();
      void doSomething();
      :
      :
}

class Military : public Country {
public:
      Power();
      void doAnother();
      void doAnother2();
      :
      :
}

class Technology : public Military{
public:
      Technology();
      void doAnother3();
      :
      :
}

Assume that this inheritance suits my solution. But as you see, when i create Military from Country, there is not a relation between them logically. I mean, military is not a country. Also for Technology from country, the problem is same. Technology is not a Military nor Country.

Anyway, that solution is okay for me, it shortens my code, but if i do this, do i betray Object Oriented Programming Philosophy? Is it a contradicton?

  • 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-02T04:48:26+00:00Added an answer on June 2, 2026 at 4:48 am

    Yes, it’s against OOP. You relationships are has-a, not is-a.

    You should use composition instead of inheritance for this.

    class Country{
          Military m;  //Country has-a military
          int a,b;
    public:
          Country();
          void doSomething();
    }
    
    class Military{
          Technology t; //Military has-a technology
    public:
          Military();
          void doAnother();
          void doAnother2();
    }
    
    class Technology{
    public:
          Technology();
          void doAnother3();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have developed some classes with similar behavior, they all implement the same interface.
What is the difference with these three classes? They all seem to have similar
I have classes which have automatic properties only like public customerName {get; set;}. They
In Java, do class objects have the same heritance relations as the classes they
I'm having trouble grasping generic methods. I have two classes that are generated (they
I have two classes (this is C#) that are very similar except they each
I have downloaded a third party library and they have classes I need to
I am communicating with a partner's webservice using proxy classes they've provided. I have
I have two classes generated by LINQ2SQL both from the same table so they
I have a requirement where in i have a set of classes and they

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.