VOOZH about

URL: https://www.geeksforgeeks.org/scala/scala-byte-x-long-long-6/

⇱ Scala Byte /(x: Long): Long - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Scala Byte /(x: Long): Long

Last Updated : 14 Jan, 2020
In Scala, Byte is a 8-bit signed integer (equivalent to Java's byte primitive type). The method /(x:Long) method is utilized to return the quotient of this value and x.
Method Definition: Byte /(x: Long): Long Return Type: It returns the quotient of this value and x.
Example #1: Output:
5
Example #2: Output:
11
Comment
Article Tags:

Explore