This issue came up because I was setting some values using the
rand() function, then requesting them through a SOAP request where the were received as strings. A numeric comparison between two numers that were seemingly the same failed:
# these two variables are indentical when printed to STDOUT
$var1 = rand(1);
$var2 = $soapres->dataof('//path/to/elem/')->attr->{attr};
if ( $var1 == $var2 ) {
print "all is well\n";
} else {
print "got problems?\n";
}
The comparison invariably failed. However, when I did a string comparison, it succeeded.
# these two variables are indentical when printed to STDOUT
$var1 = rand(1);
$var2 = $soapres->dataof('//path/to/elem/')->attr->{attr};
if ( $var1 eq $var2 ) {
print "all is well\n";
} else {
print "got problems?\n";
}
I'm guessing that this has something to do with the internal representation of the value returned by
rand(). I'm guessing that the value is stored internally with a greater precision, so the numeric comparison between that value and the "truncated" value fails.
Of course...this is just my theory.
dsb
This @ISA my( $cool ) %SIG
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.