isValidInt()方法用于查找指定字符是否在Int类型的范围内。
函数定义: def isValidInt: Boolean
返回类型: It returns true if the stated character is in the range of type Int else it returns false.
示例:1#
// Scala program of isValidInt()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying isValidInt() method
val result = ('\u9999').isValidInt
// Displays output
println(result)
}
}
输出:
true
示例:2#
// Scala program of isValidInt()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying isValidInt() method
val result = ('\u0555').isValidInt
// Displays output
println(result)
}
}
输出:
true
相关用法
- Scala Int isValidInt()用法及代码示例
- Scala Float isValidInt()用法及代码示例
- Scala Char to(end: Char, step: Char)用法及代码示例
- Scala Char to(end: Char)用法及代码示例
注:本文由纯净天空筛选整理自nidhi1352singh大神的英文原创作品 Scala Char isValidInt() method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。