Scala Int isValidChar() 方法与示例
如果指定的 int 数为零或位于 scala.Char MinValue 和 MaxValue 的范围内,则使用isValidChar()方法返回 true;否则返回假。
Method Definition: (Int_Number).isValidChar
Return Type: It returns true if the specified number is either zero or lies within the range of scala.Char MinValue and MaxValue; otherwise returns false.
示例 #1:
// Scala program of Int isValidChar()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying isValidChar method
val result = (0).isValidChar
// Displays output
println(result)
}
}
输出:
true
示例 #2:
// Scala program of Int isValidChar()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying isValidChar method
val result = (5.9).isValidChar
// Displays output
println(result)
}
}
输出:
false