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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T18:54:45+00:00 2026-06-10T18:54:45+00:00

I am writing a class (virtual_flight_runtime_environment), and it is mostly non-static, with the exception

  • 0

I am writing a class (virtual_flight_runtime_environment), and it is mostly non-static, with the exception of one static function for the purposes of a Win32 thread using it as its function. The class declares struct simaircraftdata* aircraftdata (a data struct), and calls ‘aircraftdata = new aircraftdata;’ in the constuctor (public: virtual_flight_runtime_environment()).

My question is about destructors and memory deallocation. I have written the destructor as such:

    ~virtual_flight_runtime_environment(void) {
         /*..Other code, i.e. closing win32 handles, etc.*/
        delete aircraftdata;
    }

Now, the class is declared in another function (the DoWork function of a .Net background worker) like so:

    virtual_flight_runtime_environment* this_environment = new virtual_flight_runtime_environment;

And just before the end of the function, I call ‘delete this_environment;’. Immediately after, ‘this_environment’ would have gone out of scope, and the desturctor should have been called.

Is this correct? I do notice continued increases in memory usage over time, and I’m wondering if I’ve done something wrong. Does calling delete on a pointer just make it a null pointer, or does it deallocate the data at the end of it?

Any advice would be appreciated,

Collin Biedenkapp

  • 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-10T18:54:46+00:00Added an answer on June 10, 2026 at 6:54 pm

    There is no direct connection between a delete in your program and whether it will directly be visible in say the task manager because the OS tries to optimize memory utilization. When you look in the task manager you will typically see the working set size of your application, this is a measure of how much memory your app has requested but not necessarily how much it is currently using.

    And to your question, yes deleting the memory as you did it is the WTG although as others have pointed out using smart pointers is generally much better to handle memory to avoid later headaches.

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

Sidebar

Related Questions

I am writing a class in which a one of the function's implementation depends
I'm writing a class which shares several different features with std::function (or at least
I'm writing a class in C++ that I cannot debug by using F5. The
I have a class hierarchy and i am writing a virtual function in it.
I am writing a ThreadPool Class in C++ using Boost ASIO. The following is
I'm experiencing an access violation error when I try to call non static function.
Scala programmer should have known that this sort of writing : class Person{ var
I tried writing this class #include <memory> class ContainerUnique { public: ContainerUnique(void); ~ContainerUnique(void); private:
I am writing a class that I know that needs a lock, because the
I am writing a class in Python 2.6.2 that contains a lookup table. Most

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.