views:

127

answers:

2

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.

+9  A: 

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:

Greg Bacon
+5  A: 

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
converter42