round_ceiling
如果 bigdecimal 是正的,則做 round_up 操作;如果為負,則做 round_down 操作。
round_down
從不在捨棄(即截斷)的小數之前增加數字。
round_floor
如果 bigdecimal 為正,則作 round_up ;如果為負,則作 round_down 。
round_half_down
若捨棄部分》 .5,則作 round_up;否則,作 round_down 。
round_half_even
如果捨棄部分左邊的數字為奇數,則作 round_half_up ;如果它為偶數,則作為round_half_down
round_half_up
若捨棄部分》=.5,則作 round_up ;否則,作 round_down
round_unnecessary
該「偽捨入模式」實際是指明所要求的操作必須是精確的,,因此不需要捨入操作。
round_up
總是在非 0 捨棄小數(即截斷)之前增加數字。
Calendar 中常量說明
01.calendar cal calendar.getinstance 02.03.當前年 04.int year cal.get calendar.year 05.06.當前月 calendar.month從0開始 07.int month cal.get calendar.month 1 08...
PHP中常量總結
一 預設常量 1.directory separator是乙個返回跟作業系統相關的路徑分隔符的php內建命令,在windows上返回 而在linux或者類unix上返回 因為windows系統和linux系統的路徑分隔符不一樣。在 windows 中,斜線 和反斜線 都可以用作目錄分隔符,在linu...
C 類中常量定義
有時我們希望某些常量只在類中有效。由於 define定義的巨集常量是全域性的,不能達到目的,於是想當然地覺得應該用const修飾資料成員來實現。const資料成員的確是存在的,但其含義卻不是我們所期望的。const資料成員只在某個物件生存期內是常量,而對於整個類而言卻是可變的,因為類可以建立多個物件...