Hi,

I recently wanted to overload '*' with one of my class which can accept external multiplication with bigints.

In other words, I wanted to do something like:

my $obj = new My::Custom::Object; use bigint; my $mult = 2**100 * $obj;

I realised that overloading '*' inside My::Custom::Object would not be enough as the class resolution would first process '*' inside Math::BigInt if the number is the first operand.

So I thought I should directly overload '*' inside Math::BigInt. I guess I can do that even if this class is not "mine", right?

package Math::BigInt; use overload '*' => sub { if (ref $_[1] eq 'My::Custom::Object') { $_[1]->MultiplyByInt($_[0]); } else { $_[0]->bmult($_[1]); } }

I'm not sure this is a good solution, though. My concern is about using 'bmult' instead of '*'. I doubt bmult will behave correctly if something else than a BigInt is provided as a second operand.

I thought about creating a child class of Math::BigInt so '*' can fallback to parent '*' when necessary but then I'll have to explicitely bless my integers which would be annoying.

So, how should I do this right?


In reply to Overloading multiplication involving BigInt by grondilu

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.