in reply to Re^15: the "our" declaration ?!! (special vars)
in thread the "our" declaration ?!!
First let's assume you haven't seen the light of packages and use Library.pm:
And then you have script.pluse strict; use vars qw($foo); # ... code that uses $foo ... 1;
The other example goes like this:use strict; use Library; # You can now use $foo freely.
Both examples are admittedly trivial. But in both cases what vars does is better than what our would do.use vars qw($foo); # Some code here. package Bar; # Now you can't use $foo, and won't accidentally access $main::foo.
Now where is the win with using our? It is that it lets people write this:
instead of the 1 line longerpackage Foo; use strict; use Exporter qw(import); our @EXPORT_OK = qw(foo); # etc 1;
or the (to many people) less aestheticpackage Foo; use strict; use Exporter qw(import); use vars qw(@EXPORT_OK); @EXPORT_OK = qw(foo); # etc 1;
This win does not, in my eyes, qualify as important enough to make our be a major improvement in Perl. Nor does it make it a significant improvement on vars.package Foo; use Exporter qw(import); @EXPORT_OK = qw(foo); use strict; # etc 1;
That said, Larry Wall's thinking is that our was a declaration on which he could hang other syntax. Yes, this is the famous "my Dog $spot" discussion. That hasn't happened in Perl 5, nor does it seem likely to in the near future, but it is supposed to in Perl 6. At which point our would have substantially greater functionality. But that hasn't happened yet.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^17: the "our" declaration ?!! (special vars)
by Anonymous Monk on Jan 22, 2009 at 07:21 UTC | |
|
Re^17: the "our" declaration ?!! (special vars)
by LanX (Saint) on Jan 22, 2009 at 13:09 UTC | |
by tilly (Archbishop) on Jan 22, 2009 at 14:58 UTC |