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