I have an object with a method that returns a filehandle, and I want to read from that handle. The following doesn't work, because the right angle bracket of the method call is interpreted as the closing angle bracket of the input reader:
my $input = <$object->get_handle()>;
That gets parsed as:
my $input = ( < $object- > ) get_handle() >;
which is obviously a syntax error. Is there any way I can perform a method call within an angle operator, or do I need to break it into two steps like this?
my $handle = $object->get_handle();
my $input = <$handle>;
use IO::File, and then treat handles as objects? – Ryan Thompson Apr 20 '10 at 5:22readlineis the best solution to the question as posed, but I've decided to use OO for my IO from now on.use IO::File. So my real answer is$object->get_handle->getline. – Ryan Thompson Apr 20 '10 at 16:29