Scala Char <<(x: Int) 方法与示例
<<(x: Int)方法用于查找左移了 Int 类型的参数列表中指定的位数的字符值,并且新的位用零填充。
Method Definition: def <<(x: Int): Int
Return Type: It returns an integer.
示例:1#
// Scala program of <<(x: Int)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying <<(x: Int) method
val result = 'D'.<<(23)
// Displays output
println(result)
}
}
输出:
570425344
示例:2#
// Scala program of <<(x: Int)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying <<(x: Int) method
val result = 'D'.<<(-23)
// Displays output
println(result)
}
}
输出:
34816