int getPrecision()
优质
小牛编辑
131浏览
2023-12-01
描述 (Description)
java.math.MathContext.getPrecision()返回精度设置。 此值始终为非负值。
声明 (Declaration)
以下是java.math.MathContext.getPrecision()方法的声明。
public int getPrecision()
参数 (Parameters)
NA
返回值 (Return Value)
此方法返回一个int,它是精度设置的值。
异常 (Exception)
NA
例子 (Example)
以下示例显示了math.MathContext.getPrecision()方法的用法。
package cn.xnip;
import java.math.*;
public class MathContextDemo {
public static void main(String[] args) {
// create 2 MathContext objects
MathContext mc1, mc2;
// assign context settings to mc1, mc2
mc1 = new MathContext(4, RoundingMode.CEILING);
mc2 = new MathContext(50, RoundingMode.HALF_EVEN);
// create 2 int objects
int i1, i2;
// assign precision of mc1, mc2 to i1, i2
i1 = mc1.getPrecision();
i2 = mc2.getPrecision();
String str1 = "Precision of mc1 is " + i1;
String str2 = "Precision of mc2 is " + i2;
// print i1, i2 values
System.out.println( str1 );
System.out.println( str2 );
}
}
让我们编译并运行上面的程序,这将产生以下结果 -
Precision of mc1 is 4
Precision of mc2 is 50