Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
> Regarding the allocation, in this case, we're talking pointer to an array.

yes, reference to an array (pointers are in C memory addresses but references are more complicated).

But it doesn't matter @array and $array_ref=\@array are just two different ways to represent the same array.

> Normally, I wouldn't create an empty array, but was pretty sure that I had to have the reference in place before the push, yes?

As I told you: No!

You are pushing to a variable starting with @. If the array doesn't exist already it will be allocated. If it exists but it's incompatible to push (like a hash) you,'ll get an error.

DB<107> ref $a => "" DB<108> push @$a,1..3 => 3 DB<109> ref $a => "ARRAY" DB<110> $b={} => {} DB<111> push @$b,1..3 Not an ARRAY reference at (eval 44)[multi_perl5db.pl:644] line 2. DB<112> ref $b => "HASH"
In newer versions of Perl you are even allowed to push directly to $array_refs.

Cheers Rolf


In reply to Re^3: Avoiding memory loss... by LanX
in thread Avoiding memory loss... by J.Perl.Man

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



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (3)
As of 2024-04-19 20:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found