java.math.BigInteger.longValue () convierte este BigInteger en un valor largo. Si el valor devuelto por esta función es demasiado grande para caber en un valor largo, solo devolverá los 64 bits de orden inferior. Existe la posibilidad de que esta conversión pueda perder información sobre la magnitud general del valor BigInteger. Este método también puede devolver el resultado con signo opuesto.
Sintaxis:
public long longValue()
Devoluciones: el método devuelve un valor largo que representa un valor largo para este BigInteger.
Ejemplos:
Input: BigInteger1=3214558191 Output: 3214558191 Explanation: BigInteger1.longValue()=3214558191. Input: BigInteger1=32145535361361525377 Output: -4747952786057577855 Explanation: BigInteger1.longValue()=-4747952786057577855. This BigInteger is too big for longValue so it is returning lower 64 bit.
Ejemplo 1: Los siguientes programas ilustran el método longValue() de la clase BigInteger
// Java program to demonstrate longValue() method of BigInteger import java.math.BigInteger; public class GFG { public static void main(String[] args) { // Creating 2 BigInteger objects BigInteger b1, b2; b1 = new BigInteger("3214553537"); b2 = new BigInteger("76137217351"); // apply longValue() method long longValueOfb1 = b1.longValue(); long longValueOfb2 = b2.longValue(); // print longValue System.out.println("longValue of " + b1 + " : " + longValueOfb1); System.out.println("longValue of " + b2 + " : " + longValueOfb2); } }
longValue of 3214553537 : 3214553537 longValue of 76137217351 : 76137217351
Ejemplo 2: cuando el retorno largo es demasiado grande para el valor largo.
// Java program to demonstrate longValue() method of BigInteger import java.math.BigInteger; public class GFG { public static void main(String[] args) { // Creating 2 BigInteger objects BigInteger b1, b2; b1 = new BigInteger("32145535361361525377"); b2 = new BigInteger("7613721535372632367351"); // apply longValue() method long longValueOfb1 = b1.longValue(); long longValueOfb2 = b2.longValue(); // print longValue System.out.println("longValue of " + b1 + " : " + longValueOfb1); System.out.println("longValue of " + b2 + " : " + longValueOfb2); } }
longValue of 32145535361361525377 : -4747952786057577855 longValue of 7613721535372632367351 : -4783767069412450057
Referencia:
BigInteger longValue() Docs
Publicación traducida automáticamente
Artículo escrito por AmanSingh2210 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA