美文网首页
JAVA基础拾忆

JAVA基础拾忆

作者: 奉先 | 来源:发表于2019-11-01 15:09 被阅读0次

    1. 字符串转字符数组

    2. Java Math的 floor,round和ceil的总结

    floor 返回不大于的最大整数
    round 则是4舍5入的计算,入的时候是到大于它的整数
    round方法,它表示“四舍五入”,算法为Math.floor(x+0.5),即将原来的数字加上0.5后再向下取整,所以,Math.round(11.5)的结果为12,Math.round(-11.5)的结果为-11。

    相关文章

      网友评论

          本文标题:JAVA基础拾忆

          本文链接:https://www.haomeiwen.com/subject/fnjfbctx.html