Question

I am new to Perl and am curious whether @{$list_ref} and @$list_ref are perfectly equivalent.

They seem to be interchangeable, but I am nervous that there is something subtle going on that I may be missing.

Was it helpful?

Solution

Yes, they're equivalent. You need braces when the expression is more than a simple scalar variable, e.g.,

push @{ $foo{$bar} } => "baz";

For more detail, see the Using References section of the documentation on references. The standard Perl documentation also includes several tutorials on using references:

OTHER TIPS

I've always found it helpful to remember that the outer braces are not syntactical magic, they're just a block that returns a reference. The expression inside the block can be anything that returns a reference:

$ perl -le 'sub foo {[qw/ apple orange banana /]} print ${print "Do something here."; foo()} [1]'
Do something here.
orange
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top