You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Denis Kishenko (JIRA)" <ji...@apache.org> on 2006/08/22 08:53:13 UTC

[jira] Created: (HARMONY-1248) [classlib][math] exception compatibility BigDecimal.valueOf(0L, -22).shortValueExact()

[classlib][math] exception compatibility BigDecimal.valueOf(0L, -22).shortValueExact()
--------------------------------------------------------------------------------------

                 Key: HARMONY-1248
                 URL: http://issues.apache.org/jira/browse/HARMONY-1248
             Project: Harmony
          Issue Type: Bug
          Components: Non-bug differences from RI
            Reporter: Denis Kishenko


============= Spec ========================
public short shortValueExact()
Throws:
  ArithmeticException - if this has a nonzero fractional part, or
will not fit in a short.

================ Test =========================
import java.math.BigDecimal;

public class Test {
  public static void main(String args[] ) {
      BigDecimal.valueOf(0L, -22).shortValueExact();
  }
}

================ Output =====================
RI throws java.lang.ArithmeticException: Overflow
Harmony throws nothing, just return 0

Actually BigDecimal.valueOf(0L, -22) equals 0E+22. So Harmony follows
spec and looks absolutely logically.


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira