java.LongAccumulator.toString () es un método incorporado en Java que devuelve la representación de string del valor actual de la instancia de LongAccumulator.
Sintaxis:
public String toString()
Parámetros: Este método no acepta ningún parámetro.
Valor devuelto: este método devuelve la representación de string del valor actual.
Los siguientes programas ilustran el método anterior:
Programa 1 :
// Program to demonstrate the toString() method import java.lang.*; import java.util.concurrent.atomic.LongAccumulator; public class GFG { public static void main(String args[]) { LongAccumulator num = new LongAccumulator(Long::sum, 0L); // accumulate operation on num num.accumulate(42); num.accumulate(10); num.get(); // before toString the value is System.out.println(" the old value is: " + num); ; // toStrings current value num.toString(); // Print after toString operation System.out.println(" the current value is: " + num); } }
Producción:
the old value is: 52 the current value is: 52
Programa 2 :
// program to demonstrate the toString() method import java.lang.*; import java.util.concurrent.atomic.LongAccumulator; public class GFG { public static void main(String args[]) { LongAccumulator num = new LongAccumulator(Long::sum, 0L); // accumulate operation on num num.accumulate(5); num.accumulate(10); num.get(); // before toString the value is System.out.println(" the old value is: " + num); // toStrings current value num.toString(); // Print after toString operation System.out.println(" the current value is: " + num); } }
Producción:
the old value is: 15 the current value is: 15
Referencia : https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/LongAccumulator.html#toString–
Publicación traducida automáticamente
Artículo escrito por Twinkl Bajaj y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA