VOOZH about

URL: https://www.geeksforgeeks.org/scala/scala-byte-x-short-boolean-4/

⇱ Scala Byte ==(x: Short): Boolean - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Scala Byte ==(x: Short): Boolean

Last Updated : 14 Jan, 2020
In Scala, Byte is a 8-bit signed integer (equivalent to Java's byte primitive type). The method ==(x:Short) method is utilized to return true if this value is equal to x, false otherwise.
Method Definition: Byte ==(x: Short): Boolean Return Type: It returns true if this value is equal to x, false otherwise.
Example #1: Output:
true
Example #2: Output:
false
Comment
Article Tags:

Explore