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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T01:11:57+00:00 2026-05-18T01:11:57+00:00

Would someone explain the below code? A{} C{public: begin(&a); private: A *a;} begin(&a) {

  • 0

Would someone explain the below code?

A{}

C{public: begin(&a); private: A *a;}

begin(&a)
{
   a = &a;
}

B{private: A *a; C *c; start(); }

start(){
   c->begin(&a);
}

=> In B, the object A is created and in C the object A is referenced to the object a in B.

then I got this problem:

no matching function for call to: begin(a**), candidate: begin(&a)

Otherwise, I can write this in C# and I am not sure how to implement this in C++:

public class A
{
   public A(){}
}

public class B
{
   A a;
   C c;
   public B()
   {
      c = new C();
   } 

   void start()
   {
       a = new A();
       c.begin(a);
   }
}

public class C
{
    A a;
    public C(){}

    public void begin(A a)
    {
      this.a = 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-18T01:11:57+00:00Added an answer on May 18, 2026 at 1:11 am

    Are you just trying to get the syntax correct?

    class A
    {};
    
    class B
    {
       std::auto_ptr<A> a;  // This object owns A so use a smart pointer to indicate ownership.
       C                c;
    
       B(B const&);           // Disable copying. If you want copying use boost::shared_ptr
       B& operator=(B const&);// Disable copying.
    
       public:   
         void start()
         {
           a.reset(new A());
           c.begin(a.get());
         }
    };
    
    class C
    {
        A* a;
        public:
          C()
           : a(NULL)
          {}
    
        void begin(A* pA)
        {
          a = pA;
        }
    };
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can someone explain the mechanics of a jump table and why is would be
How would you explain JavaScript closures to someone with a knowledge of the concepts
A simple question, but could someone provide sample code as to how would someone
Why would someone want to use a linked-list over an array? Coding a linked-list
Why would someone use WHERE 1=1 AND <conditions> in a SQL clause (Either SQL
Why would someone use a group by versus distinct when there are no aggregations
Why would someone use numeric(12, 0) datatype for a simple integer ID column? If
I'm quite confused about several books in .NET that I have read. Would someone
I was wondering if someone would be able to help me write a CQL
I suppose it depends on how it's implemented. I'd love it if someone would

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.