带有示例的 Scala Char getType() 方法
getType()方法用于返回一个整数类型的值,表示字符的一般类别。
Method Definition: def getType: Int
Return Type: It returns an Integer.
示例:1#
// Scala program of getType()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying getType() method
val result = 'B'.getType
// Displays output
println(result)
}
}
输出:
1
这里,“B”的类别是 1。
示例:2#
// Scala program of getType()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying getType() method
val result = ('%').getType
// Displays output
println(result)
}
}
输出:
24
这里,'%' 的类别是 24。