|
From: Mintcake on 5 May 2008 20:04 This is *not* a trivial problem. If you know Perl well, please take a bit of time to look at this. I have the following code in a file Foo.pm package Foo; my @xyzzy = (1,2,3); sub new { my $self = bless {}, shift; $self->ini('xyzzy'); print \@xyzzy, ' ', scalar @xyzzy; print $self->{xyzzy}, ' ', scalar @{$self->{xyzzy}}; } sub ini { my ($self, $field) = @_; eval "\$self->{$field} = \\\@$field"; } 1; __END__ My main program is simply this: #!/usr/local/bin/perl -l use Foo; new Foo; __END__ The two lines of output are: ARRAY(0x90edda4) 3 ARRAY(0x90edfcc) 0 It seems that there are two separate arrays, one of which is empty. I was expecting the blessed hash to simply contain a reference to the @xyzzy lexical declared with module scope. If I include the package Foo code in the main program instead of a separate module I get the expected result. If I lose the ini() subroutime and put the eval directly in the constructor I get the expected result. If I don't declare @xyxxy with my or use our instead I get the expected result. If I add a use strict in Foo.pm and change $self->ini('xyzzy') to $self->ini('plugh') I get the expeted error: Can't use an undefined value as an ARRAY reference at /home/tony/lib/ Foo.pm line 11. I'm using perl v5.8.8 and I get the some on i686-linux and Activstate on Windoze.
From: Ben Bullock on 5 May 2008 21:08 On Mon, 05 May 2008 18:04:09 -0700, Mintcake wrote: > This is *not* a trivial problem. If you know Perl well, please take a > bit of time to look at this. I don't know Perl that well, but in case this needs confirmation, I had a look & confirmed the following odd behaviour: > If I include the package Foo code in the main program instead of a > separate module I get the expected result. If I lose the ini() > subroutime and put the eval directly in the constructor I get the > expected result. If I don't declare @xyxxy with my or use our instead I > get the expected result. > If I add a use strict in Foo.pm and change $self->ini('xyzzy') to > $self->ini('plugh') I get the expeted error: > > Can't use an undefined value as an ARRAY reference at /home/tony/lib/ > Foo.pm line 11. > > I'm using perl v5.8.8 and I get the some on i686-linux and Activstate > on Windoze.
From: xhoster on 5 May 2008 22:32 Mintcake <tony(a)skelding.co.uk> wrote: > This is *not* a trivial problem. If you know Perl well, please take a > bit of time to look at this. > > I have the following code in a file Foo.pm > > package Foo; > > my @xyzzy = (1,2,3); > > sub new { > my $self = bless {}, shift; > $self->ini('xyzzy'); > print \@xyzzy, ' ', scalar @xyzzy; > print $self->{xyzzy}, ' ', scalar @{$self->{xyzzy}}; > } > > sub ini { > my ($self, $field) = @_; > eval "\$self->{$field} = \\\@$field"; > } ini never latches onto @xyzzy, because @xyzzy is not mentioned in ini at compile time. Very similar to: http://groups.google.com/group/comp.lang.perl.misc/browse_frm/thread/eaf48dac9f298e29 Xho -- -------------------- http://NewsReader.Com/ -------------------- The costs of publication of this article were defrayed in part by the payment of page charges. This article must therefore be hereby marked advertisement in accordance with 18 U.S.C. Section 1734 solely to indicate this fact.
From: Ronny on 7 May 2008 06:45 On 6 Mai, 03:04, Mintcake <t...(a)skelding.co.uk> wrote: > package Foo; > > my @xyzzy = (1,2,3); > > sub new { > my $self = bless {}, shift; > $self->ini('xyzzy'); > print \@xyzzy, ' ', scalar @xyzzy; > print $self->{xyzzy}, ' ', scalar @{$self->{xyzzy}}; > > } > > sub ini { > my ($self, $field) = @_; > eval "\$self->{$field} = \\\@$field"; > > } > > 1; > My main program is simply this: > > #!/usr/local/bin/perl -l > use Foo; > new Foo; > > The two lines of output are: > > ARRAY(0x90edda4) 3 > ARRAY(0x90edfcc) 0 First I run your program with use warnings; enabled, and here I got the message: Variable "@xyzzy" is not available at (eval 1) line 2. Which means @xyzzy can't be seen from within eval. Things are different if I "use" the variable inside the routine, so that the compiler can see it - for example by writing sub ini { my ($self, $field) = @_; print "ini: ", \@xyzzy,"\n"; eval "\$self->{$field} = \\\@$field"; } You can also put the usage after the eval; it is only important that the variable is used somewhere in the function: sub ini { my ($self, $field) = @_; eval "\$self->{$field} = \\\@$field"; print "ini: ", \@xyzzy,"\n"; } In both cases, Foo::new will print the same value for the hash. We learn two things from this: (1) Perl can be pretty bizarre in its details. (2) If you do not "use warnings", you are automatically in a state of sin. Ronald
|
Pages: 1 Prev: cpan shell and MyConfig.pm problem Next: Problem with email attachment, 1 becomes 10 |