addMany(E..element)方法参数中的E..是什么意思



如果有人能解释E.…在这个addMany方法中的含义,我们将不胜感激。示例代码:

    /**
     * Add a variable number of new elements to this ArrayBag
     *
     * @param elements A variable number of new elements to add to the ArrayBag
     */
    public void addMany(E... elements) {
        if (items + elements.length > elementArray.length) {
            ensureCapacity((items + elements.length) * 2);
        }
        System.arraycopy(elements, 0, elementArray, items, elements.length);
        items += elements.length;
    }

这被称为变量自变量它允许方法接受零个或多个参数。如果我们不知道参数的计数,那么我们必须在方法中传递它。作为变量参数的一个优点,我们不必提供重载方法,因此代码更少。

例如:

class Sample{  
 static void m(String... values){  
  System.out.println("Hello m");  
  for(String s:values){  
   System.out.println(s);  
  }  
 }  
 public static void main(String args[]){  
 m();//zero argument   
 m("hello");//one argument   
 m("I","am","variable-arguments");//three arguments  
 }}

一旦你使用了变量参数,你就必须考虑以下内容点。

  • 方法中只能有一个变量参数
  • 变量参数必须是最后一个参数

例如:

void method(Object... o, int... i){}//Compile  error
void method(int... i, String s){}//Compile  error  

相关内容

  • 没有找到相关文章

最新更新