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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T15:28:26+00:00 2026-05-20T15:28:26+00:00

With reference to this MSDN article , at the end (Section: Robust Programming) it

  • 0

With reference to this MSDN article , at the end (Section: Robust Programming) it states,

To prevent resource leaks, always free
resources (such as memory, file
handles, and sockets) in the move
assignment operator.

What will happen if the move assignment is instead implemented as:

MemoryBlock& operator=(MemoryBlock&& other)
{
   if (this != &other)
   {
      std::swap(_data, other._data);
      std::swap(_length, other._length);
   }
   return *this;
}

Wouldn’t the “_data” of the rvalue that “other” references be freed when it goes out of scope?

  • 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-20T15:28:27+00:00Added an answer on May 20, 2026 at 3:28 pm

    Yes, other._data will be freed when it goes out of scope (assuming a good destructor of course). However there is one item to consider: If other._data refers to a resource that needs a timely destruction, it may be destructed late in this design. An example might be the locked state of a mutex.

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

Sidebar

Related Questions

I this MSDN Magazine article , the author states (emphasis mine): Note that boxing
This is in reference to an article ' Simplify Asynchronous programming with Tasks '
This MSDN article says: HttpContext: Current is always null when accessed from within a
Given this MSDN article, we learn that the Common Type System in .Net has
The MSDN article on String Basics shows this: string str = hello; string nullStr
The following saying is quoted from this article in MSDN. ... strong-name signing makes
following this MSDN article a CHOICE Element in a field declaration for SharePoint should
In this MSDN article (Chapter 6 — Improving ASP.NET Performance), it says the following:
Reading through this MSDN article http://msdn.microsoft.com/en-us/library/dd460648.aspx I'm seeing a claim that MEF doesn't have
Reference: This is a self-answered question. It was meant to share the knowledge, Q&A

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.