logo

Java float nøgleord

Java float nøgleordet er en primitiv datatype. Det er en enkelt-præcision 32-bit IEEE 754 flydende komma. Det bruges til at erklære variablerne og metoderne. Det repræsenterer brøktallene.

Punkter at huske

  • Flyderen dækker et område fra 1,40129846432481707e-45 til 3,40282346638528860e+38 (positiv eller negativ).
  • Dens standardværdi er 0.0f.
  • Dens standardstørrelse er 4 byte.
  • Det kan bruges til at gemme hukommelse i store arrays af flydende kommatal.
  • Det er ikke en god tilgang at bruge float til præcise værdier, såsom valuta.

Eksempler på Java float søgeord

Eksempel 1

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

 public class FloatExample1 { public static void main(String[] args) { float num1=5.5f; float num2=5f; System.out.println('num1: '+num1); System.out.println('num2: '+num2); } } 

Produktion:

 num1: 5.5 num2: 5.0 

Eksempel 2

I dette eksempel giver vi en heltalsværdi til en flydende variabel. Her skriver compiler implicit et heltal til at flyde og vise den tilsvarende værdi i brøkform.

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

Produktion:

 num1: 5.0 num2: 10.0 

Eksempel 3

I dette eksempel giver vi en større decimalværdi.

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

Produktion:

 num1: 5.812167E8 num2: 7.8368497 

Eksempel 4

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

 public class FloatExample4 { public static void main(String[] args) { float num=56.34; System.out.println('num1: '+num); } } 

Produktion:

 Exception in thread 'main' java.lang.Error: Unresolved compilation problem: Type mismatch: cannot convert from double to float 

Eksempel 5

I dette eksempel angiver vi slutområdet for decimalværdi.

 public class FloatExample5 { public static void main(String[] args) { float num1=1.40129846432481707e-45f; float num2=3.40282346638528860e+38f; System.out.println('num1: '+num1); System.out.println('num2: '+num2); } } 

Produktion:

 num1: 1.4E-45 num2: 3.4028235E38 

Eksempel 6

I dette eksempel angiver vi værdien i videnskabelig notation

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

Produktion:

 num1: 1873.2 num2: 1873.2 

Eksempel 7

I dette eksempel opretter vi en metode, der returnerer flydende værdi.

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

Produktion:

 62.5