search
HomeJavajavaTutorialUsing example double longValue() function in Java

Using example double longValue() function in Java

Java is a powerful object-oriented language that allows a high degree of control and precision over various data types. One such function is double long Value(), which is a key method used to convert a long value into a double. This article provides a comprehensive understanding of the Double long Value() method in Java, including its syntax, explanation, and different usage methods.

grammar

The syntax of the Double long Value() method is very simple −

public double doubleValue()

Glossary explanation

The method doubleValue() is an instance method that belongs to the Number class and is overridden in the Double class. It converts a Double object to the basic double type. This method does not accept any parameters and returns the double value of this Double object.

Grammar code

Double num = new Double(123.45);
double d = num.doubleValue();
System.out.println(d);

In the above code, the Double object num is instantiated with a value of 123.45. Then call the doubleValue() method to convert num to the original double type.

algorithm

  • Initialize the Double object.

  • Call the doubleValue() method on the object.

  • doubleValue() method returns the double value of the object.

method

Let's examine two different ways of using properties in Java Servlets.

Method 1: Basic conversion

In its simplest form, the doubleValue() method is used to convert a Double object to a double primitive.

Example

public class Main {
   public static void main(String[] args) {
      Double num = new Double(789.32);
      double d = num.doubleValue();
      System.out.println(d);
   }
}

Output

789.32

illustrate

This is a simple Java program contained in a class called "Main". In this class, there is a method named "main". The "main" method serves as the entry point of the program.

Inside the "main" method, an object named "num" is created using the `Double` class in Java, which is a wrapper class of the primitive data type `double`. The `Double` object is initialized to a value of 789.32.

Then, call the "doubleValue()" method on the "num" object. This method is a built-in function in Java that converts a 'Double' object to the original 'double' data type. The output of the `doubleValue()` method is assigned to the `double` variable "d".

Finally, use the `System.out.println(d);` statement to print the value of "d" to the console.

Thus, this program shows the direct application of creating objects in Java and converting `Double` objects to `double` primitive data type. It highlights how to utilize the `doubleValue()` method and output the results to the console.

Method 2: Conversion of mathematical operations

The doubleValue() method is particularly useful when performing mathematical operations that require double precision.

Example

public class Main {
   public static void main(String[] args) {
      Double num1 = new Double(45.67);
      Double num2 = new Double(32.14);
      double result = num1.doubleValue() / num2.doubleValue();
      System.out.println(result);
   }
}

Output

1.4209707529558184

illustrate

This Java program is encapsulated in a class named "Main" and uses the doubleValue() method to perform division between two Double objects.

Inside the main method as the starting point of the program, two Double objects num1 and num2 are created, with values ​​​​of 45.67 and 32.14 respectively. The Double class is a wrapper class for the original double data type in Java, allowing the double to be used as a complete object.

Subsequently, the doubleValue() method is called on num1 and num2. This method is an inherent part of the Double class in Java and is used to convert a Double object to the basic double data type. The results of these changes are then used in a division operation, the result of which is assigned to the double factor "result".

Finally, the program uses System.out.println(result) to print the value of "result" to the control center; explanation. So, this particular Java snippet features the use of the doubleValue() strategy in numerical tasks.

Method 3: Array conversion

doubleValue() method can also be used when processing Double object arrays.

Example

public class Main {
   public static void main(String[] args) {
      Double[] numArray = {new Double(10.1), new Double(20.2), new Double(30.3)};
      double sum = 0;
      for (Double num : numArray) {
         sum += num.doubleValue();
      }
      System.out.println(sum);
   }
}

Output

60.599999999999994

illustrate

This runnable Java program, located in a class named "Main", demonstrates the use of the doubleValue() method when working with an array of Double objects.

In the main method, three elements −10.1, 20.2 and 30.3 are initialized using the array numArray of Double objects. This array represents a sequence of Double objects. A double variable sum is also declared and initialized with an initial value of 0. It is used to accumulate the sum of Double elements in an array.

Then the program starts a for-each loop that iterates over each Double object in numArray. For each iteration, the doubleValue() method is called on the Double object. This built-in Java method converts a Double object to a primitive double data type. Then add the double value to the sum.

Once all elements in numArray have been processed, use System.out.println(sum); to print the final value of sum to the console. Therefore, this Java code shows how to use the doubleValue() method when working with an array of Double objects, highlighting its usefulness in aggregation operations such as calculating the sum of elements.

Method 4: Conversion in Collection

The doubleValue() method can also be used in collections such as lists or collections of Double objects.

Example

import java.util.Arrays;
import java.util.List;

public class Main {
   public static void main(String[] args) {
      List<Double> numList = Arrays.asList(new Double(1.1), new Double(2.2), new Double(3.3));
      double product = 1;
      for (Double num : numList) {
         product *= num.doubleValue();
      }
      System.out.println(product);
   }
}

Output

7.986000000000001

illustrate

This Java program, contained in a class named "Main", demonstrates the use of the doubleValue() method when dealing with a list of Double objects.

The entry point of the program is the main method. Here, a list of Double objects, numList, is declared and initialized with three elements: 1.1, 2.2, and 3.3. A double variable product is also declared and initialized to 1. This variable will store the running product of the elements in the List.

Then the program executes a for-each loop to traverse each Double object in numList. During each iteration, the doubleValue() method is called on the current Double object. This method is built into the Double class in Java and converts a Double object to a primitive double data type. The resulting double value is then multiplied with the product, updating its value.

After completing the loop and processing all elements in numList, print the final product to the console through the System.out.println(product); statement. Therefore, this program effectively demonstrates the use of the doubleValue() method when dealing with a collection of Double objects, specifically for cumulative multiplication operations.

in conclusion

The double long Value() method in Java provides a simple and efficient way to convert a Double object into a primitive double, proving its usefulness in various scenarios. Whether you are using basic conversions, mathematical operations, arrays, or collections, the doubleValue() method enables seamless conversions that enhance your Java programming experience.

The above is the detailed content of Using example double longValue() function in Java. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:tutorialspoint. If there is any infringement, please contact admin@php.cn delete
带你搞懂Java结构化数据处理开源库SPL带你搞懂Java结构化数据处理开源库SPLMay 24, 2022 pm 01:34 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于结构化数据处理开源库SPL的相关问题,下面就一起来看一下java下理想的结构化数据处理类库,希望对大家有帮助。

Java集合框架之PriorityQueue优先级队列Java集合框架之PriorityQueue优先级队列Jun 09, 2022 am 11:47 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于PriorityQueue优先级队列的相关知识,Java集合框架中提供了PriorityQueue和PriorityBlockingQueue两种类型的优先级队列,PriorityQueue是线程不安全的,PriorityBlockingQueue是线程安全的,下面一起来看一下,希望对大家有帮助。

完全掌握Java锁(图文解析)完全掌握Java锁(图文解析)Jun 14, 2022 am 11:47 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于java锁的相关问题,包括了独占锁、悲观锁、乐观锁、共享锁等等内容,下面一起来看一下,希望对大家有帮助。

一起聊聊Java多线程之线程安全问题一起聊聊Java多线程之线程安全问题Apr 21, 2022 pm 06:17 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于多线程的相关问题,包括了线程安装、线程加锁与线程不安全的原因、线程安全的标准类等等内容,希望对大家有帮助。

Java基础归纳之枚举Java基础归纳之枚举May 26, 2022 am 11:50 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于枚举的相关问题,包括了枚举的基本操作、集合类对枚举的支持等等内容,下面一起来看一下,希望对大家有帮助。

详细解析Java的this和super关键字详细解析Java的this和super关键字Apr 30, 2022 am 09:00 AM

本篇文章给大家带来了关于Java的相关知识,其中主要介绍了关于关键字中this和super的相关问题,以及他们的一些区别,下面一起来看一下,希望对大家有帮助。

java中封装是什么java中封装是什么May 16, 2019 pm 06:08 PM

封装是一种信息隐藏技术,是指一种将抽象性函式接口的实现细节部分包装、隐藏起来的方法;封装可以被认为是一个保护屏障,防止指定类的代码和数据被外部类定义的代码随机访问。封装可以通过关键字private,protected和public实现。

Java数据结构之AVL树详解Java数据结构之AVL树详解Jun 01, 2022 am 11:39 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于平衡二叉树(AVL树)的相关知识,AVL树本质上是带了平衡功能的二叉查找树,下面一起来看一下,希望对大家有帮助。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software