in reply to Re: Code style advice: where to put "use" statements?
in thread Code style advice: where to put "use" statements?
And what would you (they) do if a module is subsequently needed in another subroutine in the same file?
Unless the other subroutine is in a different package it doesn't matter whether it also "use"s the module or not, it's loaded and will be available (I think you are probably aware of this, just putting it in as clarification). See this example
Output:#!/usr/bin/perl use strict; use warnings; mainsub(); secsub(); thirdsub(); Frob::fourthsub(); sub mainsub { use Data::Dumper; } sub secsub { my $r = "secsub"; print Dumper $r; } sub thirdsub { use Data::Dumper; my $r = "thirdsub"; print Dumper $r; } package Frob; sub fourthsub { my $r = "thirdsub"; print Dumper $r; }
Name "Frob::Dumper" used only once: possible typo at useuse.pl line 31 +. $VAR1 = 'secsub'; $VAR1 = 'thirdsub'; print() on unopened filehandle Dumper at useuse.pl line 31.
IMO there are several very good reasons not to put "use" into a subroutine (or other block) but rather at the top of a package:
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Code style advice: where to put "use" statements?
by BrowserUk (Patriarch) on Feb 27, 2008 at 10:49 UTC |