Java support for variable parameter detailed _java

Source: Internet
Author: User

It means: The number of parameters can be written according to need, you can write 1, 2, 3 、、、、 They are saved to an array of parameters.

But these parameters have some constraints: they must be of the same type, such as all string types.

At the same time, the parameters in the function of the variable parameter are also constrained: for example, an array of variable parameters must be written at the end of the argument, or the program will not know how many of your arguments are.

Example: parameter values in output variable parameters

public class Variableargument {public
  static void Main (string[] args) {
    printargumentsinfo ("AAA", "BBB", "CCC", "ddd", "Eee");
  /**
   * Print parameter
   * @param an array of strings parameters
  /public static void Printargumentsinfo (string...strings) {
    for (int i=0;i<strings.length;i++) {
      System.out.println (argument + (i+1) +: "+strings[i]);}}}


Results:

Parameter 1:aaa parameter
2:bbb parameter 3:CCC parameter 4:ddd parameter
5:eee

The above mentioned is the entire content of this article, I hope you can enjoy.

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.