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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T22:44:47+00:00 2026-05-19T22:44:47+00:00

I was wondering how to do something in C++. I want to be able

  • 0

I was wondering how to do something in C++. I want to be able to create an instance of this struct

struct ComplexInstruction : simple_instr
{
    bool isHead;
    bool isTail;
};

that copies all the data from the simple_instr instance. So essentially, I want to do something like this

ComplexInstruction cInstr = instr; // <- instance of simple_instr

and have cInstr have a copy of all the data in instr without having to copy over every field (since there’s alot of them). I’m not sure how do this, and I don’t think simple casting will work. Additionally, is it possible to do the reverse? I.e. have an instance of ComplexInstruction and turn it into an instance of simple_instr. I assume this can be done using casting, but I don;t have alot of experience with c++

Thanks in advance

  • 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-19T22:44:47+00:00Added an answer on May 19, 2026 at 10:44 pm

    Create a consctructor in the derived class to initialize from a base class.

    class Base
    {
      int x;
    public:
      Base(int a) : x(a){}
    };
    
    class Derived : public Base
    {
    public:
      Derived(const Base & B) : Base(B){}
    };
    

    Note that if you have a derived object of Base, you actually have a base object and you can safely use the base copy ctor like so.

    Derived d;
    Base b(d);//the parts of Base that are in Derived are now copied from d to b.
              //Rest is ignored.  
    

    If you want to be more verbose, you write an operator= in your derived class like

    void operator=(const Base & b)
    {
      Base::operator=(b);
      //don't forget to initialize the rest of the derived members after this, though.
    }
    

    It all depends on what you want to do, really. The important thing is: be explicit. Don’t leave uninitialized members of your class.

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

Sidebar

Related Questions

Just wondering, if I want to create a class that does something and I
I'm wondering because I want to store something other than pre-defined keywords that are
I was wondering if it was possible to do something like this. I want
I want to be able to do something like this: var MyObject = function(prop)
I was wondering if something was possible to do in CSS. Basically i want
I was wondering something. How does this email look when it will be send
I was just wondering about something. I have a frame that loads pages and
Im wondering if I'm doing something wrong, or if this is as good a
So I have a a text file that looks something like this: public >ret
I want to create a jquery script that works like the iphones slide to

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.