in reply to Re^2: Function Prototypes and Array vs. List (Pt. 2)
in thread Function Prototypes and Array vs. List (Pt. 2)
create(id)when put together with this:Creates a Foo object with the id parameter set accordingly. id should be a valid record identifier.
So, I have an array @bob = ('Bob') which I want to use on this function. Eyeballing it, it looks like it would fitWhat part of your brain says that when they wanted a "record identifier" (whatever that is, but it looks to be a single value), you can hand it an array?! That's the part that's off here. It's not Perl's fault you're trying to jam in something that doesn't make sense. And Perl has every right to given you surprising (to you) results when you've wandered out into unsuggested territory.
As I saw somewhere in a purl factoid:
You can't just throw random crap together and expect it to work.If I knew that the function was looking for a scalar ID, and I had that ID as the first element of an array I'd know immediately that I needed to hand it an element:
Case closed.create($bob[0])
-- Randal L. Schwartz, Perl hacker
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Function Prototypes and Array vs. List (Pt. 2)
by Abigail-II (Bishop) on Jun 13, 2002 at 16:01 UTC | |
by tadman (Prior) on Jun 14, 2002 at 04:46 UTC | |
by danger (Priest) on Jun 14, 2002 at 07:43 UTC |