当前位置: 首页>>代码示例>>Java>>正文


Java RoundingMode.HALF_UP属性代码示例

本文整理汇总了Java中java.math.RoundingMode.HALF_UP属性的典型用法代码示例。如果您正苦于以下问题:Java RoundingMode.HALF_UP属性的具体用法?Java RoundingMode.HALF_UP怎么用?Java RoundingMode.HALF_UP使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在java.math.RoundingMode的用法示例。


在下文中一共展示了RoundingMode.HALF_UP属性的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: MonetaryFormat

public MonetaryFormat() {
    // defaults
    this.negativeSign = '-';
    this.positiveSign = 0; // none
    this.zeroDigit = '0';
    this.decimalMark = '.';
    this.minDecimals = 2;
    this.decimalGroups = null;
    this.shift = 0;
    this.roundingMode = RoundingMode.HALF_UP;
    this.codes = new String[MAX_DECIMALS];
    this.codes[0] = CODE_CREA;
    this.codes[3] = CODE_MCREA;
    this.codes[6] = CODE_UCREA;
    this.codeSeparator = ' ';
    this.codePrefixed = true;
}
 
开发者ID:creativechain,项目名称:creacoinj,代码行数:17,代码来源:MonetaryFormat.java

示例2: main

public static void main(String[] args) throws Exception {
	  Jep jep = new Jep(new BigDecComponents(new MathContext(2,RoundingMode.HALF_UP)));
	  //Jep jep = new Jep(new BigDecComponents());
	  jep.addVariable("a", new BigDecimal("10"));
	  //jep.addVariable("b", 3);
	   String exp="10*a/3*3";
	   jep.parse(exp);
	   BigDecimal result = (BigDecimal) jep.evaluate();
	   System.out.println("�������� " + result);
	   System.out.println("�������� " + result.setScale(2,   BigDecimal.ROUND_HALF_UP));
	   System.out.println(0.123*0.12);
	   
	   Map temp=new HashMap();
	   JSONObject jsonObj=new JSONObject();
	   temp.putAll(jsonObj);
}
 
开发者ID:jeffreyning,项目名称:nh-micro,代码行数:16,代码来源:Test.java

示例3: MonetaryFormat

public MonetaryFormat() {
    // defaults
    this.negativeSign = '-';
    this.positiveSign = 0; // none
    this.zeroDigit = '0';
    this.decimalMark = '.';
    this.minDecimals = 2;
    this.decimalGroups = null;
    this.shift = 0;
    this.roundingMode = RoundingMode.HALF_UP;
    this.codes = new String[MAX_DECIMALS];
    this.codes[0] = CODE_BTC;
    this.codes[3] = CODE_MBTC;
    this.codes[6] = CODE_UBTC;
    this.codeSeparator = ' ';
    this.codePrefixed = true;
}
 
开发者ID:guodroid,项目名称:okwallet,代码行数:17,代码来源:MonetaryFormat.java

示例4: getTaxRoundingMode

/**
 * Get the tax rounding mode to use.
 * 
 * <p>
 * This returns the {@link #TAX_ROUNDING_MODE_PROPERTY}. Defaults to {@literal HALF_UP}.
 * </p>
 * 
 * @return the rounding mode
 */
public RoundingMode getTaxRoundingMode() {
    String mode = getConfigurationValue(TAX_ROUNDING_MODE_PROPERTY, DEFAULT_TAX_ROUNDING_MODE);
    RoundingMode result;
    try {
        result = RoundingMode.valueOf(mode);
    } catch (IllegalArgumentException e) {
        result = RoundingMode.HALF_UP;
    }
    return result;
}
 
开发者ID:SolarNetwork,项目名称:killbill-easytax-plugin,代码行数:19,代码来源:EasyTaxConfig.java

示例5: SignificantFormat

public SignificantFormat(final int significantPlaces, final Locale locale)
{
    format = NumberFormat.getNumberInstance(locale);
    mathContext = new MathContext(significantPlaces, RoundingMode.HALF_UP);
}
 
开发者ID:rtr-nettest,项目名称:open-rmbt,代码行数:5,代码来源:SignificantFormat.java

示例6: main

public static void main(String [] argv) {

        // For each member of the family, make sure
        // rm == valueOf(rm.toString())

        for(RoundingMode rm: RoundingMode.values()) {
            if (rm != RoundingMode.valueOf(rm.toString())) {
                throw new RuntimeException("Bad roundtrip conversion of " +
                                           rm.toString());
            }
        }

        // Test that mapping of old integers to new values is correct
        if (RoundingMode.valueOf(BigDecimal.ROUND_CEILING) !=
                RoundingMode.CEILING) {
                throw new RuntimeException("Bad mapping for ROUND_CEILING");
        }

        if (RoundingMode.valueOf(BigDecimal.ROUND_DOWN) !=
                RoundingMode.DOWN) {
                throw new RuntimeException("Bad mapping for ROUND_DOWN");
        }

        if (RoundingMode.valueOf(BigDecimal.ROUND_FLOOR) !=
                RoundingMode.FLOOR) {
                throw new RuntimeException("Bad mapping for ROUND_FLOOR");
        }

        if (RoundingMode.valueOf(BigDecimal.ROUND_HALF_DOWN) !=
                RoundingMode.HALF_DOWN) {
                throw new RuntimeException("Bad mapping for ROUND_HALF_DOWN");
        }

        if (RoundingMode.valueOf(BigDecimal.ROUND_HALF_EVEN) !=
                RoundingMode.HALF_EVEN) {
                throw new RuntimeException("Bad mapping for ROUND_HALF_EVEN");
        }

        if (RoundingMode.valueOf(BigDecimal.ROUND_HALF_UP) !=
                RoundingMode.HALF_UP) {
                throw new RuntimeException("Bad mapping for ROUND_HALF_UP");
        }

        if (RoundingMode.valueOf(BigDecimal.ROUND_UNNECESSARY) !=
                RoundingMode.UNNECESSARY) {
                throw new RuntimeException("Bad mapping for ROUND_UNNECESARY");
        }
    }
 
开发者ID:lambdalab-mirror,项目名称:jdk8u-jdk,代码行数:48,代码来源:RoundingModeTests.java

示例7: BigDecimalLongTranslatorFactory

/**
 * Construct this converter with the default factor (1000), which can store three points of
 * precision past the decimal point.
 */
public BigDecimalLongTranslatorFactory() {
    this(6, RoundingMode.HALF_UP);
}
 
开发者ID:3wks,项目名称:generator-thundr-gae-react,代码行数:7,代码来源:BigDecimalLongTranslatorFactory.java


注:本文中的java.math.RoundingMode.HALF_UP属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。