Scala Int intValue() 方法与示例
intValue()方法用于返回指定值的 int 值。
Method Definition: def intValue(): Byte
Return Type: It returns the int value of the given value.
示例 #1:
// Scala program of Int intValue
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying intValue method
val result = (15).intValue
// Displays output
println(result)
}
}
输出:
15
示例 #2:
// Scala program of Int intValue
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying intValue method
val result = (1586).intValue
// Displays output
println(result)
}
}
输出:
1586