El método longValue() se utiliza para encontrar el valor Long del tipo Short indicado.
Definición del método: def longValue(): Long
Tipo de retorno: Devuelve Long.
Ejemplo 1#
// Scala program of longValue() // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Applying longValue() method val result = (1000).longValue // Displays output println(result) } }
Producción:
1000
Ejemplo: 2#
// Scala program of longValue() // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Applying longValue() method val result = (899).longValue // Displays output println(result) } }
Producción:
899
Publicación traducida automáticamente
Artículo escrito por nidhi1352singh y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA