带有示例的 Scala Char >>(x: Long) 方法
>>(x: Long)方法用于查找右移Long类型的参数列表中指定的位数的字符值,并且新的左位填充与左边相同的值- 给定字符值的大多数位。
Method Definition: def >>(x: Long): Int
Return Type: It returns an integer.
示例:1#
// Scala program of >>(x: Long)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying >>(x: Long) method
val result = 'B'.>>(100000L)
// Displays output
println(result)
}
}
输出:
0
示例:2#
// Scala program of >>(x: Long)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying >>(x: Long) method
val result = 'D'.>>(-100000L)
// Displays output
println(result)
}
}
输出:
0