Open In App

Scala Long &(x: Short) method

Last Updated : 02 Nov, 2019
Summarize
Comments
Improve
Suggest changes
Share
Like Article
Like
Report
In Scala, Long is a 64-bit signed integer, which is equivalent to Java's long primitive type. The &(x: Short) method is utilized to return the Bitwise AND of the specified Long value and Short value.
Method Definition - def &(x: Short) Returns - Returns Bitwise AND of this value and x.
Example #1: SCALA
// Scala program to explain working of
// &(x: Short) method

// Creating object
object GfG
{ 

// Main method
def main(args:Array[String])
{

// Applying &(x: Short) method 
val result = (13.toLong).&(28:Short)

// Displays output
println(result)

}
} 


 
Output:
12
  Example #2: SCALA
// Scala program to explain working of
// &(x: Short) method

// Creating object
object GfG
{ 

// Main method
def main(args:Array[String])
{

// Applying &(x: Short) method 
val result = (7.toLong).&(11:Short)

// Displays output
println(result)

}
} 
Output:
3

Article Tags :

Similar Reads