VOOZH about

URL: https://www.geeksforgeeks.org/scala/scala-byte-tofloat-method/

⇱ Scala Byte toFloat() method - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Scala Byte toFloat() method

Last Updated : 30 Jan, 2020
In Scala, Byte is a 8-bit signed integer (equivalent to Java’s byte primitive type). The toFloat() method is utilized to convert the specified number into Float datatype value.
Method Definition: (Number).toFloat Return Type: It returns converted Float value.
Example #1: Output:
13.0
Example #2: Output:
123.0
Comment
Article Tags:

Explore