Wednesday, July 3, 2024
HomeLanguagesJavaByte doubleValue() method in Java with examples

Byte doubleValue() method in Java with examples

The doubleValue() method of Byte class is a built in method in Java which is used to return the value of this Byte object as double.

Syntax

ByteObject.doubleValue()

Return type: It returns the value of ByteObject as double.

Below is the implementation of doubleValue() method in Java:

Example 1:




// Java code to demonstrate
// Byte doubleValue() method
  
class GFG {
    public static void main(String[] args)
    {
  
        // byte value
        byte a = 17;
  
        // wrapping the byte value
        // in the wrapper class Byte
        Byte b = new Byte(a);
  
        // doubleValue of the Byte Object
        double output = b.doubleValue();
  
        // printing the output
        System.out.println("Double value of "
                           + a + " is : " + output);
    }
}


Output:

Double value of 17 is : 17.0

Example 2:




// Java code to demonstrate
// Byte doubleValue() method
  
class GFG {
    public static void main(String[] args)
    {
  
        String value = "17";
  
        // wrapping the byte value
        // in the wrapper class Byte
        Byte b = new Byte(value);
  
        // doubleValue of the Byte Object
        double output = b.doubleValue();
  
        // printing the output
        System.out.println("Double value of "
                           + b + " is : " + output);
    }
}


Output:

Double value of 17 is : 17.0

Nokonwaba Nkukhwana
Experience as a skilled Java developer and proven expertise in using tools and technical developments to drive improvements throughout a entire software development life cycle. I have extensive industry and full life cycle experience in a java based environment, along with exceptional analytical, design and problem solving capabilities combined with excellent communication skills and ability to work alongside teams to define and refine new functionality. Currently working in springboot projects(microservices). Considering the fact that change is good, I am always keen to new challenges and growth to sharpen my skills.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments