Método LongSummaryStatistics getMax() en Java con ejemplos

El método getMax() de la clase LongSummaryStatistics en Java se usa para obtener el máximo de registros en este LongSummaryStatistics.

Sintaxis:

public int getMax()

Parámetro: Este método no acepta ningún valor como parámetro.

Valor devuelto: este método devuelve el máximo de registros en esta LongSummaryStatistics.

Programa:

// Java program to demonstrate
// the above method
  
import java.util.*;
  
public class LongSummaryStatisticsDemo {
    public static void main(String[] args)
    {
  
        LongSummaryStatistics longSummaryStatistics
            = new LongSummaryStatistics();
  
        List<Integer> list
            = Arrays.asList(10, 20, 30, 40, 50);
  
        Iterator<Integer> iterator = list.listIterator();
        while (iterator.hasNext()) {
  
            // Add the integers to the LongSummaryStatistics object
            longSummaryStatistics.accept(iterator.next());
        }
  
        System.out.println("The maximum of values is "
                           + longSummaryStatistics.getMax());
    }
}
Producción:

The maximum of values is 50

Referencia: https://docs.oracle.com/javase/10/docs/api/java/util/LongSummaryStatistics.html#getMax()

Publicación traducida automáticamente

Artículo escrito por ShubhamMaurya3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *