After reading perlxs, perlxstut, and perlguts, you'll find that this is entirely possible. By decrementing the "pointer" field of any var to 0, the garbage collector will come by and nuke it. This is entirely possible in Perl, thanks to the wonderful Inline module. This is not adviseable since accessing a variable which has been nuked by the garbage collector (not possible in Perl alone) will result in "undefined" behavior.

Another method is to call one of the perlxs' free commands which will nuke the var immediately. But be warned, using such functionality may result in a debugging nightmare. In short, I don't see this as overly useful. Especially in OO software, where I WANT the object to go out of scope and call a DESTROY block, I don't see a need for free(). I see this as just a nother reason perl is cool. If you really want to know when something is gone, put it into scope. This is the most obvious and reasonable use for a scope. using well-designed scopes will save on memory as well as on debugging time, so you have a win-win situation. (use risk;? funny! ) I find that perl provides enough freedom as it is! :-D

AgentM Systems nor Nasca Enterprises nor Bone::Easy nor Macperl is responsible for the comments made by AgentM. Remember, you can build any logical system with NOR.

In reply to Re: free 0x010400! by AgentM
in thread free 0x010400! by redmist

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.