isValidByte()方法用於查找指定的字符是否在Byte類型的範圍內。
函數定義: def isValidByte: Boolean
返回類型: It returns true if the stated character is in the range of type Byte else it returns false.
示例:1#
// Scala program of isValidByte()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying isValidByte() method
val result = ('F').isValidByte
// Displays output
println(result)
}
}
輸出:
true
示例:2#
// Scala program of isValidByte()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying isValidByte() method
val result = ('\u0555').isValidByte
// Displays output
println(result)
}
}
輸出:
false
相關用法
- Scala Int isValidByte()用法及代碼示例
- Scala Float isValidByte()用法及代碼示例
- Scala Char to(end: Char, step: Char)用法及代碼示例
- Scala Char to(end: Char)用法及代碼示例
注:本文由純淨天空篩選整理自nidhi1352singh大神的英文原創作品 Scala Char isValidByte() method with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。