|
Posted by Jürgen Exner on May 24, 2008, 11:18 am
Please log in for more thread options
>Other than the reasons given above, is there any effeciency or speed
>benefits to using:
>open FILE, ">", "file";
>instead of:
>open(FILE,">file");
You are dealing with accessing a file system and -except in very special
cases like flash memory- with physical media that needs to be
moved/read/interpreted. Those steps are many orders of magnitude slower
than any speed gain you could possibly get from using one form over the
other within Perl.
jue
|