带有示例的 Scala Short !=(x: Char) 方法
!=(x: Char)方法用于检查声明的 Short 值是否不等于“x”。 'x' 是 Char 类型。
Method Definition: def !=(x: Char): Boolean
Return Type: It returns true if the stated Short value is not equal to ‘x’ else it returns false.
示例:1#
// Scala program of !=(x: Char)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying !=(x: Char) method
val result = (1000).!=('C')
// Displays output
println(result)
}
}
输出:
true
示例:2#
// Scala program of !=(x: Char)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying !=(x: Char) method
val result = (666).!=('B')
// Displays output
println(result)
}
}
输出:
true