You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@groovy.apache.org by "Daniel Sun (Jira)" <ji...@apache.org> on 2019/12/28 16:31:00 UTC

[jira] [Commented] (GROOVY-8948) BigDecimal to primtive conversion not working

    [ https://issues.apache.org/jira/browse/GROOVY-8948?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17004516#comment-17004516 ] 

Daniel Sun commented on GROOVY-8948:
------------------------------------

Could you try the code with the latest version of groovy 3.0.0? I find it works with groovy-3.0.0-rc-2:

{code:java}
:\_DEV\groovy-3.0.0-rc-2>groovySh
Groovy Shell (3.0.0-rc-2, JVM: 11.0.5)
Type ':help' or ':h' for help.
-----------------------------------------------------------------------------------------------------------------------
groovy:000> Math.ceil(1/2)
===> 1.0
groovy:000>
{code}


> BigDecimal to primtive conversion not working
> ---------------------------------------------
>
>                 Key: GROOVY-8948
>                 URL: https://issues.apache.org/jira/browse/GROOVY-8948
>             Project: Groovy
>          Issue Type: Bug
>          Components: groovy-runtime
>    Affects Versions: 2.5.5
>            Reporter: Kenneth Gendron
>            Priority: Minor
>
> The following code will not compile with Groovy:
> {code:java}
> Math.ceil(1/2){code}
> Groovy insists that it try to find Math.ceil(BigDecimal), as opposed to performing the conversion to a double.  The following will work though:
> {code:java}
> Math.ceil((double)1/2){code}
> But the above should not be necessary as Groovy should unbox it.
> Incidentally, this did work with version 2.4.12 and below.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)