logo

Java dobbelt nøgleord

Java-dobbeltsøgeordet er en primitiv datatype. Det er et 64-bit IEEE 754 floating point med dobbelt præcision. Det bruges til at erklære variablerne og metoderne. Det repræsenterer generelt decimaltallene.

Punkter at huske

  • Dobbelten dækker et område fra 4,94065645841246544e-324d til 1,79769313486231570e+308d (positiv eller negativ).
  • Dens standardværdi er 0,0d.
  • Dens standardstørrelse er 8 byte.
  • Det er standardtypen for decimaltal.
  • Det er ikke en god tilgang at bruge dobbelt til præcise værdier, såsom valuta.

Eksempler på Java dobbelt søgeord

Eksempel 1

Lad os se et simpelt eksempel for at vise dobbelt type variabel.

 public class DoubleExample1 { public static void main(String[] args) { double num=5.5; System.out.println('num: '+num); } } 

Produktion:

 num: 5.5 

Eksempel 2

I dette eksempel giver vi heltalsværdi til dobbelt variabel. Her skriver compiler implicit et heltal til at fordoble og vise den tilsvarende værdi i decimalform.

 public class DoubleExample2 { public static void main(String[] args) { double num1=5; double num2=10; System.out.println('num1: '+num1); System.out.println('num2: '+num2); } } 

Produktion:

 num1: 5.0 num2: 10.0 

Eksempel 3

Lad os se et eksempel for at teste den større decimalværdi.

 public class DoubleExample3 { public static void main(String[] args) { double num1=581216732.323433; double num2=7.83684987683688; System.out.println('num1: '+num1); System.out.println('num2: '+num2); } } 

Produktion:

 num1: 5.81216732323433E8 num2: 7.83684987683688 

Eksempel 4

I dette eksempel giver vi flydende værdi til decimalvariabel.

 public class DoubleExample4 { public static void main(String[] args) { double num1=56.34f; double num2=34f; System.out.println('num1: '+num1); System.out.println('num2: '+num2); } } 

Produktion:

 num1: 56.34000015258789 num2: 34.0 

Eksempel 5

I dette eksempel giver vi det maksimale interval for decimalværdier.

 public class DoubleExample5 { public static void main(String[] args) { double num1=4.94065645841246544e-324d; double num2=1.79769313486231570e+308d; System.out.println('num1: '+num1); System.out.println('num2: '+num2); } } 

Produktion:

 num1: 4.9E-324 num2: 1.7976931348623157E308 

Eksempel 6

I dette eksempel angiver vi værdien i videnskabelig notation

 public class DoubleExample6 { public static void main(String[] args) { double num1=1873.2; //providing same value in scientific notation double num2=1.8732e3; System.out.println('num1: '+num1); System.out.println('num2: '+num2); } } 

Produktion:

 num1: 1873.2 num2: 1873.2 

Eksempel 7

Lad os se et eksempel for at skabe en metode til dobbelt returtype.

 public class DoubleExample7 { public double display(double weight) { return weight; } public static void main(String[] args) { DoubleExample7 d=new DoubleExample7(); System.out.println(d.display(62.5)); } } 

Produktion:

 62.5