Christian Kruse: use mehrfach aufrufen

Beitrag lesen

Hallo oesi50,

use Module ();

ist äquivalent zu

BEGIN { require Module }

Imports some semantics into the current package from the named module, generally by
  aliasing certain subroutine or variable names into your package.  It is exactly
  equivalent to

BEGIN { require Module; import Module LIST; }

except that Module must be a bareword.

d.h. use entspricht require mit dem Unterschied, daß es zur Compilezeit ausgeführt wird.

Nein.

Grüße,
 CK

--
Es ist uns nicht möglich, in einem Bereich unseres Lebens richtig zu verhalten, wenn wir in allen anderen falsch handeln. Das Leben ist ein unteilbares Ganzes.