The number function method of the Java indeterminate parameter to achieve the minimum value

Source: Internet
Author: User

 PackageThe method of indeterminate number of parameters;/*** @ClassName Test * @Description TODO * @Author Cherry * @Date 2018/6/9 17:15 * @Update 2018/6/9 17:15 **/ Public classtest{/*** Minimum value *@paramvalus parameters passed in, multiple *@return     */     PublicDouble Getmin (Double... values) {Double min=Double.max_value;  for(Double d:values) {if(d<min) min=D; }        returnmin; }     Public Static voidMain (string[] argv) {test test=NewTest ();System.out.println (Test.getmin (5,10,60,-1,5,-10)); }}

Getmin (double ... value) implements the minimum value for the number of indeterminate arguments, where double ... Parameter type is the same as double[] type

The number function method of the Java indeterminate parameter to achieve the minimum value

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.