isIdentifierIgnorable()方法用於確定指定字符是Scala標識符還是Unicode標識符中的可忽略字符。
函數定義: def isIdentifierIgnorable: Boolean
返回類型: It returns true if the stated character is an ignorable control character else it returns false.
示例:1#
// Scala program of isIdentifierIgnorable()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying isIdentifierIgnorable() method
val result = ('\u0555').isIdentifierIgnorable
// Displays output
println(result)
}
}
輸出:
false
示例:2#
// Scala program of isIdentifierIgnorable()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying isIdentifierIgnorable() method
val result = ('\u000E').isIdentifierIgnorable
// Displays output
println(result)
}
}
輸出:
true
相關用法
注:本文由純淨天空篩選整理自nidhi1352singh大神的英文原創作品 Scala Char isIdentifierIgnorable() method with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。