Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re: $# -variable?

by madtoperl (Hermit)
on Jul 27, 2006 at 09:03 UTC ( [id://563989]=note: print w/replies, xml ) Need Help??


in reply to $# -variable?

This node falls below the community's threshold of quality. You may see it by logging in.

Replies are listed 'Best First'.
Re^2: $# -variable?
by GrandFather (Saint) on Jul 27, 2006 at 09:15 UTC

    Umm, not quite. Consider:

    use warnings; use strict; $[ = 2; my @array = ('a', 'b', 'c'); print "$#array\n"; $[ = 200; print $#array;

    Prints:

    4 202

    :)


    DWIM is Perl's answer to Gödel
      If someone plays with $[, and you are using a loop as shown above, you have problems with both expressions $#array and scalar(@array).

      So, if you want to ensure that your loop does what you want, you have to use this one:

      #!/usr/bin/perl use strict; use warnings; $[ = 3; my @array = qw(1 2 3 4); for my $i($[ .. $[ + (scalar(@array) - 1) ){ print $array[$i],"\n"; }


      or
      #!/usr/bin/perl use strict; use warnings; $[ = 3; my @array = qw(1 2 3 4); for my $i($[ .. $#array ){ print $array[$i],"\n"; }

        I would hope these days that $[ is virtually never used. I can imagine a few places where it may be tempting to use, but none where there are not much better techniques available.

        $['s biggest problem is the surprise factor. Non-zero based arrays are not the norm in Perl and using them is likely to make the code obscure and hard to maintain and its bigest weakness is that it provides nothing that cant be done better differently.


        DWIM is Perl's answer to Gödel

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://563989]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (9)
As of 2024-04-18 07:52 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found