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

  • Home
  • SEARCH
  • 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

This question might not seem programming related at first, but let me explain. I'm
Although my question might seem abstract I hope it's not. Suppose I develop an
This question might be kind of elementary, but here goes: I have a SQL
I know this question might sound a little cheesy but this is the first
Warm Standby SQL Server/Web Server This question might fall into the IT category but
This might seem like a stupid question I admit. But I'm in a small
This might be an interesting question. I need to test that if I can
This might be an odd question, but when I scale my image in C#
This might be a stupid question but if there's a better or proper way
This might be a old question: Why does IEnumerable<T> inherit from IEnumerable ? This

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.