带有示例的 Scala Char getNumericValue() 方法
getNumericValue()方法用于返回给定字符的数值。
Method Definition: def getNumericValue: Int
Return Type: It returns Integer.
示例:1#
// Scala program of getNumericValue()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying getNumericValue() method
val result = ('Z').getNumericValue
// Displays output
println(result)
}
}
输出:
35
示例:2#
// Scala program of getNumericValue()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying getNumericValue() method
val result = 'B'.getNumericValue
// Displays output
println(result)
}
}
输出:
11