Hello Monks,

I would like to use Attribute::Default from CPAN in order to define default arguments for subs in a easily readable way. Here is a simple example which works:

use strict; use warnings; use base 'Attribute::Default'; sub f : Default(undef,"xyz") { print("@_\nEND\n"); } f('abc'); # 2nd argument defaults to xyz
This prints abc xyz, followed by a line saying END. Things stop to work, however, when I use Attribute::Default in a package which itself uses the Exporter; or maybe I just may some silly mistake. Here is the first thing I tried:
# This is file Co.pm package Co; use strict; use warnings; use base qw(Exporter Attribute::Default); our @EXPORT_OK=qw(f); sub f : Default(undef,"xyz") { print("@_\nEND\n"); } 1;
This will be called in the following way:
# This is file cotest.pl use warnings; use strict; use Co qw(f); f('abc');
Executing this will output just abc followed by END; i.e. the default argument is not used.

It gets even more bizarre when I handle @ISA by myself instead of letting use base doint it:

# This is file Co1.pm package Co1; use strict; use warnings; use Exporter; use Attribute::Default; our @ISA=qw(Exporter Attribute::Default); our @EXPORT_OK=qw(f); sub f : Default(undef,"xyz") { print("@_\nEND\n"); } 1;
I call this as usual,
# This is file cotest1.pl use warnings; use strict; use Co qw(f); f('abc');
but now I get the error message:
Invalid CODE attribute: Default(undef,"xyz") at Co1.pm
Well, I guess there is a reason why the perldoc to Attribute::Default says that you need do use base '...' to access it. Anyway, as a last resort I tried to combine the two approaches:
# This is Co2.pm package Co2; use strict; use warnings; use Exporter; our @ISA=qw(Exporter); use base qw(Attribute::Default); our @EXPORT_OK=qw(f); sub f : Default(undef,"xyz") { print("@_\nEND\n"); } 1;
The program for calling it is, not surprisingly:
use warnings; use strict; use Co2 qw(f); f('abc');
Now I get the error message:
Can't locate object method "_ATTR_CODE_Default" via package "Co2"
What is going wrong here?

-- 
Ronald Fischer <ynnor@mm.st>

In reply to Anyone using Attribute::Default from CPAN? by rovf

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.