VOOZH about

URL: https://www.geeksforgeeks.org/scala/scala-byte-x-int-boolean-5/

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


  • Courses
  • Tutorials
  • Interview Prep

Scala Byte ==(x: Int): 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:Int) method is utilized to return true if this value is equal to x, false otherwise.
Method Definition: Byte ==(x: Int): 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