带有示例的 Scala Char isWhitespace() 方法
isWhitespace()方法用于查找所述字符是否用于提供空白。
Method Definition: def isWhitespace: Boolean
Return Type: It returns true if the stated character returns white space else it returns false.
示例:1#
// Scala program of isWhitespace()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying isWhitespace() method
val result = ('\t').isWhitespace
// Displays output
println(result)
}
}
输出:
true
示例:2#
// Scala program of isWhitespace()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying isWhitespace() method
val result = ('A').isWhitespace
// Displays output
println(result)
}
}
输出:
false