带有示例的 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 not 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 = 'E'.!=(1000)
// Displays output
println(result)
}
}
输出:
true
示例:2#
// Scala program of !=(x: Short)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying !=(x: Short) method
val result = 'B'.!=(-1000)
// Displays output
println(result)
}
}
输出:
true