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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T13:49:17+00:00 2026-05-15T13:49:17+00:00

My question might not be too correct… What I mean is: class MyClass {

  • 0

My question might not be too correct… What I mean is:

class MyClass
{
public:
    MyClass()
    {
    }

    virtual void Event()
    {
    }
};

class FirstClass : public MyClass
{
    string a; // I'm not even sure where to declare this...

public:
    FirstClass()
    {
    }

    virtual void Event()
    {
        a = "Hello"; // This is the variable that I wish to pass to the other class.
    }
};

class SecondClass : public MyClass
{
public:
    SecondClass()
    {
    }

    virtual void Event()
    {
        if (a == "Hello")
            cout << "This is what I wanted.";
    }
};

I hope that this makes at least a little sense…

Edit: _This changed to a.

  • 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-05-15T13:49:17+00:00Added an answer on May 15, 2026 at 1:49 pm

    What you need to do is make SecondClass inherit from FirstClass and declare _This as protected.

    class FirstClass : public MyClass
    {
    protected:
        string _This;
    
    public:
    

    and

    class SecondClass : public FirstClass
    

    What you got doesn’t make sense because classes can only see members and functions from their parents (MyClass in your case). Just because two class inherit from the same parent does not mean they have any relation or know anything about each other.

    Also, protected means that all classes that inherit from this class will be able to see its members, but nobody else.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

New to Web2py, so my question might not be too clear. I'm trying to
The question might not be clear, so i will explain further. I saw some
Ok, the question might not be crystal clear. Let me give some details: Let's
I'm not a regular C++er, so this question might be fairly trivial: Can anybody
Before answering, it is not as easy question as you might have thought about
I'm not sure if this might be a rather stupid question. But is it
Unfortunately I am not writing this question from my Developing PC so I might
I know this might seem a controversial question but it really is not meant
This might be a stupid question, but I was wondering whether or not you
I know, this might be a very basic question but I am not 100%

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.