Java BigDecimal valueOf()方法与示例

BigDecimal类的valueOf()方法 (BigDecimal Class valueOf() method)

Syntax:

句法:

    public static BigDecimal valueOf (double d);
public static BigDecimal valueOf (long l);
public static BigDecimal valueOf (long unsc_val , int sc_val);

  • valueOf() method is available in java.math package.

    valueOf()方法在java.math包中可用。

  • valueOf (double d) method is used to convert the given double value into a BigDecimal.

    valueOf(double d)方法用于将给定的double值转换为BigDecimal。

  • valueOf (long l) method is used to convert the given long value into a BigDecimal.

    valueOf(long l)方法用于将给定的long值转换为BigDecimal。

  • valueOf (long unsc_val , int sc_val) method is used to convert the given long unscaled value and an integer value into a BigDecimal.

    valueOf(long unsc_val,int sc_val)方法用于将给定的long非标度值和一个整数值转换为BigDecimal。

  • These methods may throw an exception at the time of returning the value of the given parameter.

    这些方法在返回给定参数的值时可能会引发异常。

    NumberFormatException: This exception may throw when the given parameter is not finite.

    NumberFormatException :如果给定参数不是有限的,则可能引发此异常。

  • These are non-static methods and it is accessible with class objects and if we try to access these methods with the class name then we will get an error.

    这些是非静态方法,可通过类对象访问,如果尝试使用类名访问这些方法,则会收到错误消息。

Parameter(s):

参数:

  • In the first case, valueOf(double d),

    在第一种情况下, valueOf(double d)

    • double d – represents the double value to be converted to a BigDecimal.
    • double d –表示要转换为BigDecimal的double值。
  • In the first case, valueOf (long l),

    在第一种情况下, valueOf(long l)

    • long l – represents the long value to be converted to a BigInteger.
    • long l –表示要转换为BigInteger的long值。
  • In the first case, valueOf (long unsc_val, int sc_val),

    在第一种情况下, valueOf(long unsc_val,int sc_val)

    • long unsc_val – represents the unscaled value of this BigDecimal.
    • long unsc_val –表示此BigDecimal的未缩放值。
    • int sc_val – represents the scale of this BigDecimal.
    • int sc_val –表示此BigDecimal的小数位数 。

Return value:

返回值:

In all the cases, the return type of the method is BigDecimal,

在所有情况下,方法的返回类型为BigDecimal 。

  • In the first case, it returns the converted double value to a BigDecimal.

    在第一种情况下,它将转换后的double值返回给BigDecimal。

  • In the second case, it returns the converted long value to a BigDecimal.

    在第二种情况下,它将转换后的long值返回给BigDecimal。

  • In the third case, it returns the BigDecimal and its value is calculated by using [(unsc_val) * 10 pow (-sc)].

    在第三种情况下,它返回BigDecimal,并使用[[unsc_val)* 10 pow(-sc)]计算其值。

Example:

例:

// Java program to demonstrate the example 
// of valueOf() method of BigDecimal
import java.math.*;
public class ValueOfOfBD {
public static void main(String args[]) {
// Instantiates three variables l_val
// d_val, unscale_val
long l_val = 125487312456l;
double d_val = 1245871.12345;
long unscale_val = 123458745123l;
// converts the given long value into
// a BigDecimal and store it in a variable
// named value_of
BigDecimal value_of = BigDecimal.valueOf(l_val);
System.out.println("l_val: " + l_val);
System.out.println("valueOf(long): ");
// Display value_of
System.out.println("BigDecimal.valueOf(l_val): " + value_of);
System.out.println();
// converts the given double value into
// a BigDecimal and store it in a variable
// named value_of
value_of = BigDecimal.valueOf(d_val);
System.out.println("d_val: " + d_val);
System.out.println("valueOf(double): ");
// Display value_of
System.out.println("BigDecimal.valueOf(d_val): " + value_of);
System.out.println();
// converts the given unscaled long value
// with the given scale into a BigDecimal and
// store it in a variable named value_of
value_of = BigDecimal.valueOf(unscale_val, 5);
System.out.println("unscale_val: " + unscale_val);
System.out.println("valueOf(long,int): ");
// Display value_of
System.out.println("BigDecimal.valueOf(unscale_val,5): " + value_of);
}
}

Output

输出量

l_val: 125487312456
valueOf(long): 
BigDecimal.valueOf(l_val): 125487312456d_val: 1245871.12345
valueOf(double): 
BigDecimal.valueOf(d_val): 1245871.12345unscale_val: 123458745123
valueOf(long,int): 
BigDecimal.valueOf(unscale_val,5): 1234587.45123

翻译自: https://www.includehelp.com/java/bigdecimal-valueof-method-with-example.aspx

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/544482.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

关于liaoxuefeng的python3教程实战第四天

关于liaoxuefeng的python3教程实战第四天。地址:http://www.liaoxuefeng.com/wiki/0014316089557264a6b348958f449949df42a6d3a2e542c000/001432338991719a4c5c42ef08e4f44ad0f293ad728a27b000#0编写数据访问代码接下来,就可以真正开始编写代码操作对象了…

聊聊sql优化的15个小技巧

前言sql优化是一个大家都比较关注的热门话题,无论你在面试,还是工作中,都很有可能会遇到。如果某天你负责的某个线上接口,出现了性能问题,需要做优化。那么你首先想到的很有可能是优化sql语句,因为它的改造…

没有安装node对等点依赖_功能依赖项的对等 数据库管理系统

没有安装node对等点依赖Equivalence of Functional dependencies states that, if the relations of different Functional dependencies sets are given, then we have to find out whether one Functional dependency set is a subset of other given set or both the sets a…

【MATLAB】Parzen窗与K近邻算法原理与代码详解

文章目录1.非参数估计原理2.Parzen窗2.1.算法原理2.2.Matlab实现与参数探究3.K近邻3.1.算法原理3.2.Matlab实现与参数探究1.非参数估计原理 \qquad已知一个样本的概率分布时,我们只需要对概率分布中的参数进行估计即可得到该样本的概率密度函数。例如已知样本X服从正…

使用 Lambda 表达式实现超强的排序功能

我们在系统开发过程中,对数据排序是很常见的场景。一般来说,我们可以采用两种方式:借助存储系统(SQL、NoSQL、NewSQL 都支持)的排序功能,查询的结果即是排好序的结果查询结果为无序数据,在内存中…

【mongodb系统学习之四】查看mongodb进程

四、查看mongodb进程(可以配合启动和关闭使用): 1)、方法一:直接查看mongodb进程是否已经存在(用上面的方式启动后,需要另开一个窗口操作):ps –ef|grep mongodb, 如图&a…

kotlin 编译时常量_Kotlin程序| 编译时常量示例

kotlin 编译时常量编译时常数 (Compile-time Constant) If the value of a read-only (immutable) property is known at the compile time. 如果在编译时已知只读(不可变)属性的值。 Mark it as a compile-time constant using the const modifier. 使用const修饰符将其标记为…

【Simulink】粒子群算法(PSO)整定PID参数(附代码和讲解)

目录0.背景1.粒子群算法1.1.算法简介1.2.算法步骤1.3.算法举例2.PID自整定2.1.基于M文件编写的PID参数自整定*2.2.复杂系统的PID自整定(基于simulink仿真)2.2.1.PSO优化PID的过程详解2.2.2.在PSO优化过程中修改参数价值权重阅读前必看:本代码…

Microsoft.AspNet.Identity 自定义使用现有的表—登录实现

Microsoft.AspNet.Identity是微软新引入的一种membership框架,也是微软Owin标准的一个实现。Microsoft.AspNet.Identity.EntityFramework则是Microsoft.AspNet.Identity的数据提供实现。但是在使用此框架的时候存在一些问题,如果是全新的项目还可以使用它默认提供的…

stl vector 函数_vector :: front()函数以及C ++ STL中的示例

stl vector 函数C vector :: front()函数 (C vector::front() function) vector::front() is a library function of "vector" header, it is used to access the first element from the vector, it returns a reference to the first element of the vector. vect…

SpringBoot 使用注解实现消息广播功能

背景在开发工作中,会遇到一种场景,做完某一件事情以后,需要广播一些消息或者通知,告诉其他的模块进行一些事件处理,一般来说,可以一个一个发送请求去通知,但是有一种更好的方式,那就…

【Matlab】模式识别——聚类算法集锦

文章目录0.聚类分析简介0.1.简单的聚类样本生成器1.静态聚类算法1.1.最近邻聚类算法1.1.1.算法原理1.1.2.参考代码1.1.3.参数选择及运行结果1.2.最大最小距离法1.2.1.算法原理1.2.2.参考代码1.2.3.参数选择及运行结果2.动态聚类算法2.1.C均值聚类算法2.1.1.算法原理2.1.2.参考代…

Ant 风格路径表达式

ANT通配符有三种: 通配符说明?匹配任何单字符*匹配0或者任意数量的字符**匹配0或者更多的目录例子: URL路径说明/app/*.x匹配(Matches)所有在app路径下的.x文件/app/p?ttern匹配(Matches) /app/pattern 和 /app/pXttern,但是不包括/app/pttern/**/exam…

java string查找_查找输出程序(Java String类)

java string查找Program 1 程序1 public class iHelp{public static void main (String[] args){System.out.println("Google".charAt(3));}}Output 输出量 gExplanation 说明 String.charAt() is a library function of String class, it returns character from…

【MATLAB】混合粒子群算法原理、代码及详解

目录1.算法1.1.原理1.2.性能比较1.3.步骤2.代码2.1.源码及注释2.2.执行与效果1.算法 1.1.原理 \qquad建议没接触过粒子群算法的朋友先看较为基础的全局粒子群算法原理及介绍,以下博文链接有详细的讲解、代码及其应用举例: 【Simulink】粒子群算法&#…

MVC HtmlHelper用法大全

HtmlHelper用来在视图中呈现 HTML 控件。 以下列表显示了当前可用的一些 HTML 帮助器。 本主题演示所列出的带有星号 (*) 的帮助器。 ActionLink - 链接到操作方法。 BeginForm * - 标记窗体的开头并链接到呈现该窗体的操作方法。 CheckBox * - 呈现复选框。 DropDownList *…

基于 MyBatis 手撸一个分表插件

背景事情是酱紫的,上级leader负责记录信息的业务,每日预估数据量是15万左右,所以引入sharding-jdbc做分表。上级leader完成业务的开发后,走了一波自测,git push后,就忙其他的事情去了。项目的框架是SpringB…

密码学哈希函数_哈希函数在密码学中的应用

密码学哈希函数A Hash Function is a mathematical function that converts a numerical value into another compressed numeric value. The input value for the hash functions can be of arbitrary length, but the output text that it will produce will always be of fi…

C语言图形化界面——含图形、按钮、鼠标、进度条等部件制作(带详细代码、讲解及注释)

目录0.引言1.素材准备2.编程2.1.创建你的界面2.2.创建按钮2.3.鼠标操作2.3.1.单击特效2.3.2.光标感应2.3.3.进度条3.完整代码及效果0.引言 \qquad看了CSDN上很多关于C程序图形化界面的介绍,有的代码繁琐难解,不方便调试修改;有的不够详细。本…

C#学习笔记(十三):I/O操作

C#的IO操作主要是针对文件夹和文件的读取和写入操作,下面我们来学习一下相关操作的类。 获取文件信息 Directory和DirectoryInfo 两个类的功能基本相同,区别如下: 前者继承System.Object,后者继承抽象类FileSystemInfo;前者是静态…