http://qs1969.pair.com?node_id=738473

why_bird has asked for the wisdom of the Perl Monks concerning the following question:

Hi Monks

I'm struggling a little with typeglobbing and filehandles. I've read this excellent node and more besides

What I can't figure out is why does this NOT work:

#assume files a.txt and b.txt exist and are normal, readable files. use strict; use warnings; open(FILE_A,"<","a.txt") || die "Could not open file 'a.txt': $!\n"; open(FILE_B,"<","b.txt") || die "Could not open file 'b.txt': $!\n"; my @FH=(*FILE_A,*FILE_B); for(my $i=0;$i<2;$i++){ while(my $line=<$FH[$i]>){ print "line: $line\n"; } } exit(0);
(And it also doesn't work if you try any of the following: etc.. the point being I've tried quite a few things. Specifically the problem is that File::glob::csh_glob returns undef, except when you do when it returns "GLOB(0x52f9f0)" (obv memory address changes..), but then the output is line: GLOB(0x52f9f0)

However, this works!!

#...as before... for(my $i=0;$i<2;$i++){ my $fh=$FH[$i]; # <----** while(my $line=<$fh>){ #...as before...
And it still works whether or not...

Why? What's the difference? Am I missing something fundamental here? Or is this some kind of 'feature'? Or is the first syntax ambiguous, or.. what??

Cheers
why_bird

edit: Formatting issues!

edit: ">" to "<", thanks Fletch

........
Those are my principles. If you don't like them I have others.
-- Groucho Marx
.......