for
my
$class
(
'Math::BigFloat'
,
'Math::BigFloat::Subclass'
) {
my
$float
=
$class
-> new(10);
my
$float_percent1
= My::Percent::Float1 -> new(100);
is(
$float
*
$float_percent1
, 10,
qq|$float = $class -> new(10);|
.
q| $float_percent1 = My::Percent::Float1 -> new(100);|
.
q| $float * $float_percent1;|
);
my
$float_percent2
= My::Percent::Float2 -> new(100);
is(
$float
*
$float_percent2
, 10,
qq|$float = $class -> new(10);|
.
q| $float_percent2 = My::Percent::Float2 -> new(100);|
.
q| $float * $float_percent2;|
);
my
$float_percent3
= My::Percent::Float3 -> new(100);
is(
$float
*
$float_percent3
, 10,
qq|$float = $class -> new(10);|
.
q| $float_percent3 = My::Percent::Float3 -> new(100);|
.
q| $float * $float_percent3;|
);
}
sub
new {
my
$class
=
shift
;
my
$num
=
shift
;
return
bless
\
$num
,
$class
;
}
sub
as_float {
my
$self
=
shift
;
return
Math::BigFloat -> new(
$$self
/ 100);
}
sub
new {
my
$class
=
shift
;
my
$num
=
shift
;
return
bless
\
$num
,
$class
;
}
sub
as_float {
my
$self
=
shift
;
return
$$self
/ 100;
}
use
overload
'""'
=>
sub
{
$_
[0] -> as_string(); };
sub
new {
my
$class
=
shift
;
my
$num
=
shift
;
return
bless
\
$num
,
$class
;
}
sub
as_string {
my
$self
=
shift
;
return
$$self
/ 100;
}