This affect is not limited to loading the same module twice, as it will happen if you load two modules that export subroutines of the same name (in this example 'foo').

I presume this is a warning to prevent incompatible modules being used at the same time?

For example

one.pm

#!/usr/bin/perl -w use strict; package one; require Exporter; our @ISA = ("Exporter"); our @EXPORT = qw(foo); sub foo { print "how do you do\n"; }
two.pm
#!/usr/bin/perl -w use strict; package two; require Exporter; our @ISA = ("Exporter"); our @EXPORT = qw(foo); sub foo { print "Salut toi! Ca va?\n"; }
trial.pl
#!/usr/bin/perl -w use strict; use one; use two; foo();
result of running trial.pl
[~/] perl trial.pl Subroutine main::foo redefined at /usr/local/lib/perl5/5.8.2/Exporter. +pm line 60. at trial.pl line 4 Salut toi! Ca va?
Note, if you switch the use statements, main::foo points to one::foo instead of two::foo

modified trial.pl

#!/usr/bin/perl -w use strict; use two; use one; foo();
result of running modified trial.pl
[~/] perl trial.pl Subroutine main::foo redefined at /usr/local/lib/perl5/5.8.2/Exporter. +pm line 60. at trial.pl line 4 how do you do

In reply to Re: What happens when you load the same module twice? by Sandy
in thread What happens when you load the same module twice? by periapt

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.