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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T08:13:53+00:00 2026-06-03T08:13:53+00:00

Consider a piece of code like this: struct B { int c; B() {

  • 0

Consider a piece of code like this:

struct B {
    int c;
    B() {
        c = 20;
    }
};
struct A {
    boost::optional<B> m_b;
    void f() {
        B b; 
        this->m_b = b;
    }
};

int main(void) {
    A a;
    a.f();
    cout << a.m_b->c << endl;
}

Apparently, a.m_b still validly exists, after assigning a local variable b to m_b.

This kind of confuses me, because I thought assigning an object to boost::optional<> was just assigning the address that points to the object. Since in my example that object is b, which is a local variable, its address should be invalid after function f() is done.

Then why is a.m_b still alive? It should be pointing to an invalid address.

  • 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-06-03T08:13:54+00:00Added an answer on June 3, 2026 at 8:13 am

    boost::optional‘s operator= will call B‘s copy constructor. If you insert this into your struct B you can set a breakpoint on it to see what’s going on:

    B(B const& other)
    {
    }
    

    Boost uses a placement new in its implementation, maybe this is what confuses you?

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

Sidebar

Related Questions

Please consider the following piece of code: int main() { typedef boost::ptr_vector<int> ptr_vector; ptr_vector
Consider this piece of code: struct Trade { float Price; char* time; int shares;
If I have a piece of code that looks like this: - (void)testSomething {
Consider this piece of code: class A { void methodX() { // snip (1
Consider this piece of code: Uint counter = 0; int* p1; int* p2; deque<int>
Consider the following piece of code: int i, k, m; k = 12; m
consider this piece of scala swing code detail.reactions += { case ButtonClicked(but) => detail.contents
Consider this one piece of Perl code, $array[$x]->{foo}->[0]= January; I analyze this code as
Consider the following piece of Java code. int N = 10; Object obj[] =
Consider this piece of code: public abstract class Validator { protected Validator() { }

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.