Condividi tramite


Proprietà length (arguments)

Aggiornamento: novembre 2007

Restituisce il numero effettivo di argomenti passati a una funzione dal chiamante.

[function.]arguments.length

Argomenti

  • function
    Facoltativo. Nome dell'oggetto Function correntemente in esecuzione.

Note

La proprietà length dell'oggetto arguments viene inizializzata dal modulo di gestione di scripting per il numero effettivo di argomenti passati a un oggetto Function all'avvio dell'esecuzione di tale funzione.

Esempio

Nell'esempio seguente viene illustrato l'utilizzo della proprietà length dell'oggetto arguments.

function argTest(a, b) : String {
   var i : int;
   var s : String = "The argTest function expected ";
   var numargs : int = arguments.length; // Get number of arguments passed.
   var expargs : int = argTest.length;   // Get number of arguments expected.
   if (expargs < 2)
      s += expargs + " argument. ";
   else
      s += expargs + " arguments. ";
   if (numargs < 2)
      s += numargs + " was passed.";
   else
      s += numargs + " were passed.";
   s += "\n"
   for (i =0 ; i < numargs; i++){        // Get argument contents.
      s += "  Arg " + i + " = " + arguments[i] + "\n";
   }
   return(s);                            // Return list of arguments.
}

print(argTest(42));
print(argTest(new Date(1999,8,7),"Sam",Math.PI));

Una volta compilato il programma con l'opzione /fast-, l'output sarà il seguente:

The argTest function expected 2 arguments. 1 was passed.
  Arg 0 = 42

The argTest function expected 2 arguments. 3 were passed.
  Arg 0 = Tue Sep 7 00:00:00 PDT 1999
  Arg 1 = Sam
  Arg 2 = 3.141592653589793

Requisiti

Versione 5,5

Si applica a:

Oggetto Arguments

Vedere anche

Riferimenti

Proprietà arguments

Proprietà length (Array)

Proprietà length (String)