You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Alexei Zakharov (JIRA)" <ji...@apache.org> on 2007/03/13 16:36:09 UTC

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

     [ https://issues.apache.org/jira/browse/HARMONY-1248?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Alexei Zakharov updated HARMONY-1248:
-------------------------------------

    Priority: Minor  (was: Major)

> [classlib][math] exception compatibility BigDecimal.valueOf(0L, -22).shortValueExact()
> --------------------------------------------------------------------------------------
>
>                 Key: HARMONY-1248
>                 URL: https://issues.apache.org/jira/browse/HARMONY-1248
>             Project: Harmony
>          Issue Type: Bug
>          Components: Non-bug differences from RI
>            Reporter: Denis Kishenko
>            Priority: Minor
>
> ============= 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.
-
You can reply to this email to add a comment to the issue online.