带有示例的 Scala Char ==(x: Short) 方法
==(x: Short)方法用于查找所述字符值是否等于'x'。并且“x”的类型必须是 Short。
Method Definition: def ==(x: Short): Boolean
Return Type: It returns true if the stated character value is equal to “x” else it returns false.
示例:1#
// Scala program of ==(x: Short)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying ==(x: Short) method
val result = 'D'.==(10000)
// Displays output
println(result)
}
}
输出:
false
示例:2#
// Scala program of ==(x: Short)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying ==(x: Short) method
val result = 'D'.==(68)
// Displays output
println(result)
}
}
输出:
true