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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T19:30:41+00:00 2026-06-10T19:30:41+00:00

I have an array that stores pointers to some objects and I want to

  • 0

I have an array that stores pointers to some objects and I want to know if it’s possible to free an object if you have only a pointer to it.
For example:

var test_form :Tform;
    p: Pointer;
vartest := Tform.create(nil);
p:=@vartest;

and if at runtime I only have p is it possible to free vartest?

  • 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-10T19:30:42+00:00Added an answer on June 10, 2026 at 7:30 pm

    The pointer p points to a TObject variable. That is, p is a pointer to a reference to an object. Therefore you need to de-reference p. Like this: p^. Because p is un-typed you need to cast it before calling the Free method.

    So, putting this together, you can free the object like this:

    TObject(p^).Free;
    

    This will not modify the vartest variable though. It will merely destroy the object. If you want to set vartest to nil as well then you can do it like this:

    FreeAndNil(p^);
    

    FreeAndNil is an odd beast because it takes an un-typed parameter. That’s why you don’t need to cast to TObject.

    To avoid all this casting it would be preferable to declare p as a typed pointer, e.g. ^TObject or ^TForm.

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

Sidebar

Related Questions

I have written some code that stores values inside a array of arrays. I
I have a snippet of code that creates an array clusterUniqueMarkers that stores all
I have a PHP class that stores a complex multidimensional array, and rather than
I have an array of vectors that I want to be stored in Block
I have an array that contains @sign in the object. I can't access that
I have an array that looks like this: [ Object actions: Array[2] comments: Object
I am have a bit of an issue that I need some pointers on
I have a couple of classes that want to pass each other some information
I have one charater pointer array which points to the some stirngs every element
I have a class that stores paths to CSS and Javascript files in arrays.

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.