当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java MathContext getRoundingMode()用法及代码示例


MathContext类getRoundingMode()方法

  • getRoundingMode() 方法可在java.math包。
  • getRoundingMode() 方法用于获取此 MathContext 的 RoundingMode 值(如果已定义)并且有许多舍入模式常量,如 DOWN、CEILING、UNNECESSARY、FLOOR 等。
  • getRoundingMode() 方法是一个非静态方法,它只能通过类对象访问,如果我们尝试使用类名访问方法,那么我们将得到一个错误。
  • getRoundingMode() 方法在获取轮次模式时不会抛出异常。

用法:

    public RoundingMode getRoundingMode();

参数:

  • None

返回值:

这个方法的返回类型是RoundingMode,它返回任何用此 MathContext 定义的 RoundingMode 常量。

例:

// Java program to demonstrate the example 
// of RoundingMode getRoundingMode() method of MathContext

import java.math.*;

public class GetRoundingModeOfMC {
    public static void main(String args[]) {
        // Initialize three MathContext objects  
        MathContext ma_co1 = new MathContext(3, RoundingMode.CEILING);
        MathContext ma_co2 = new MathContext(4);
        MathContext ma_co3 = new MathContext(6, RoundingMode.FLOOR);

        // returns the rounding mode of this MathContext
        // ma_co1 i.e. RoundingMode is the second
        // parameter set in MathContext Constructor
        // i.e. CEILING in ma_co1
        RoundingMode rm = ma_co1.getRoundingMode();
        System.out.println("ma_co1.getRoundingMode():" + rm);

        // returns the rounding mode of this MathContext
        // ma_co2 i.e. RoundingMode is the second
        // parameter set in MathContext Constructor
        // i.e. HALF_UP in ma_co2 it the default set
        // when we don't use other rounding mode
        rm = ma_co2.getRoundingMode();
        System.out.println("ma_co2.getRoundingMode():" + rm);

        // returns the rounding mode of this MathContext
        // ma_co3 i.e. RoundingMode is the second
        // parameter set in MathContext Constructor
        // i.e. FLOOR in ma_co1
        rm = ma_co3.getRoundingMode();
        System.out.println("ma_co3.getRoundingMode():" + rm);
    }
}

输出

ma_co1.getRoundingMode():CEILING
ma_co2.getRoundingMode():HALF_UP
ma_co3.getRoundingMode():FLOOR


相关用法


注:本文由纯净天空筛选整理自Preeti Jain大神的英文原创作品 Java MathContext Class | getRoundingMode() Method with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。