Here you can find the source of max(int[] values)
Parameter | Description |
---|---|
values | an argument. Assume values.length > 0. |
public static int max(int[] values)
//package com.java2s; //License from project: Open Source License public class Main { /**//from ww w . jav a2 s . c om * Returns the greatest of {@code int} values. * * @param values an argument. Assume values.length > 0. * @return the largest of values. */ public static int max(int[] values) { throw new UnsupportedOperationException(); } }