Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Difference between use Modulename; and use Modulename();

Tags:

perl

Is there any difference between use Modulename; and use Modulename(); ? Sometimes I see, for example, use Carp; and sometimes use Carp ();

like image 494
ado Avatar asked May 16 '13 02:05

ado


2 Answers

As documented,

use Modulename;

is the basically the same as

BEGIN {
   require Modulename;
   import Modulename;
}

while

use Modulename ();

is the basically the same as

BEGIN { require Modulename; }

That means the parens specify that you don't want to import anything. (It would also prevent a pragma from doing its work.)


Carp exports confess, croak and carp by default, so

use Carp;

is short for

use Carp qw( confess croak carp );

By using

use Carp ();   # or: use Carp qw( );

confess, croak and carp won't be added to the caller's namespace. They will still be available through their fully qualified name.

use Carp ();
Carp::croak(...);
like image 135
ikegami Avatar answered Oct 16 '22 10:10

ikegami


Without the (), the package's import method will be called, possibly causing some default set of names to be exported into the calling package's namespace.

Passing the () explicitly says "Do not import any names into my namespace."

Most modern object-oriented modules don't export anything by default anyway, and there's nothing stopping them from manually polluting the caller's namespace if they wanted to, but specifying () is a signal that you're not relying on names magically appearing just because you imported a package.

like image 40
Mark Reed Avatar answered Oct 16 '22 10:10

Mark Reed