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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T23:42:59+00:00 2026-05-27T23:42:59+00:00

If I have two classes A and B and I do A=B which assignment

  • 0

If I have two classes A and B and I do A=B which assignment constructor is called? The one from class A or the one from class B?

  • 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-27T23:43:00+00:00Added an answer on May 27, 2026 at 11:43 pm

    There’s copy constructor and there’s assignment operator. Since A != B, the copy assignment operator will be called.

    Short answer: operator = from class A, since you’re assigning to class A.

    Long answer:

    A=B will not work, since A and B are class types.

    You probably mean:

    A a;
    B b;
    a = b;
    

    In which case, operator = for class A will be called.

    class A
    {
    /*...*/
       A& operator = (const B& b);
    };
    

    The conversion constructor will be called for the following case:

    B b;
    A a(b);
    
    //or
    
    B b;
    A a = b; //note that conversion constructor will be called here
    

    where A is defined as:

    class A
    {
    /*...*/
        A(const B& b); //conversion constructor
    };
    

    Note that this introduces implicit casting between B and A. If you don’t want that, you can declare the conversion constructor as explicit.

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

Sidebar

Related Questions

I have two classes one of which inherits from the other. Im trying to
I have a MustInherit Parent class with two Child classes which Inherit from the
I have two classes which both extend from SQL class like this: class SQL
Note: This is a homework assignment. I have two classes, one inherits from the
Actually I have two java classes of which one is an activity class. Now
I have two classes. One is a management class, which stores a bunch of
I have two Java classes: B, which extends another class A, as follows :
I have an abstract class Airplane, and two classes PassengerAirplane and CargoAirplane, which extend
I have a class which has two HashSet<String> collections as private members. Other classes
I have two classes, and want to include a static instance of one class

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.