double keyword in java

In Java, double ” is a primitive type.

A double variable stores a double−precision 64-bit floating point value.

Examples


double ratio = .01;

double diameter = 6.15;

double height = 1.35E03; // 1.35 * 103 or 1350.0

double height = 1e−2; // 1.0 * 10−2 or 0.01

The double keyword can be used as a method parameter as below:

  1. public void displayMarks(double marks) {
  2.  
  3.     System.out.println("Total percentage marks "+marks);
  4. }
public void displayMarks(double marks) {

    System.out.println("Total percentage marks "+marks);
}


The double keyword can be used as a return type of a method as well:

  1. public double getMarks() {
  2.  
  3.                 return 94.5;
  4. }
public double getMarks() {
 
                return 94.5;
}

About the Author

Founder of javainsimpleway.com
I love Java and open source technologies and very much passionate about software development.
I like to share my knowledge with others especially on technology 🙂
I have given all the examples as simple as possible to understand for the beginners.
All the code posted on my blog is developed,compiled and tested in my development environment.
If you find any mistakes or bugs, Please drop an email to kb.knowledge.sharing@gmail.com

Connect with me on Facebook for more updates

Share this article on