NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
Huh? (Score:1)
I don't buy it:
Re: (Score:1)
Hrm, point for you. Bad wording on my side. What's the thing called methods are looked up from then? :)
I honestly thought a
delete $Foo::{bar}will remove the symbol table entry.Thanks again!
Ordinary morality is for ordinary people. -- Aleister Crowley
Re: (Score:1)
You misunderstood what chromatic said. He demonstrated that Perl does not have compile-time binding, contrary to what you are saying. Decompiling shows that the invocation of
doublein thenewmethod is indirected via the package. If you remove the entry fordoublefrom the package, the function call will NOT work.Sorry, but your approach won’t work.
Here’s a pattern for you to read carefully and chew on:
Re: (Score:1)
So, you're saying what? I can understand that as either
And btw: You call that a pattern? I call that a work-around :) And, just FYI, you might want to stay away from patronising phrases like "Here’s a pattern for you to read carefully and chew on." Because it really decreases my motivation to answer.
Ordinary morality is for ordinary people. -- Aleister Crowley
Re: (Score:1)
You said:
It’s bad wording on your part to say the functions are bound in the code, because they’re not; they’re always looked up from the symbol table.
Interestingly, what you’re doing shouldn’t work – but it does! Apparently the
%main::-type hashes aren’t actually an interface to the symbol table, they’re just a one-way mirror:Re:Huh? (Score:2)
Reply to This
Parent