in reply to Re: variables names used to define variables
in thread variables names used to define variables
Symobolic refs are there because Perl needs them for certain things to work.The main reason symbolic refs are in Perl is that before perl5, symbolic refs were the only refs you had.
For instance, class/object method calls are always done symbolically (even under strict 'refs').Bullshit. There are no references to subs involved in finding methods when it comes to class or object method calling. Walking the @ISA tree has nothing to do with references.
Perhaps you are confused about exporting subs (which is typically not done by OO classes). But then you are wrong again. Most exporting is done via the Export module, which uses neither 'strict' nor 'warnings'.
Abigail
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: variables names used to define variables
by BrowserUk (Patriarch) on Dec 11, 2003 at 16:57 UTC | |
|
Re: Re: variables names used to define variables
by hardburn (Abbot) on Dec 11, 2003 at 17:02 UTC | |
by Abigail-II (Bishop) on Dec 11, 2003 at 17:06 UTC | |
by hardburn (Abbot) on Dec 11, 2003 at 17:23 UTC | |
|
Re^3: variables names used to define variables
by Aristotle (Chancellor) on Dec 11, 2003 at 17:24 UTC | |
by Anonymous Monk on Dec 11, 2003 at 17:39 UTC | |
by Aristotle (Chancellor) on Dec 11, 2003 at 17:47 UTC |