El método ArrayList.GetRange(Int32, Int32) se usa para obtener un ArrayList que representará un subconjunto de los elementos en el ArrayList de origen.
Sintaxis:
public virtual System.Collections.ArrayList GetRange (int index, int count);
Parámetros:
índice: es de tipo Int32 y representa el índice ArrayList de base cero en el que comienza el rango.
count: Es de tipo Int32 y representa el número de elementos del rango.
Valor devuelto: este método devuelve un ArrayList que representa un subconjunto de los elementos en el ArrayList de origen.
Excepciones:
- ArgumentOutOfRangeException: si el valor del índice es menor que cero, o si el valor de cuenta es menor que cero.
- ArgumentException: si el valor de un índice y un recuento no indica un rango válido de elementos en ArrayList.
Los siguientes programas ilustran el método discutido anteriormente:
Ejemplo 1:
// C# program to illustrate the // concept of GetRange() Method using System; using System.Collections; class GFG { // Main method public static void Main() { // Creates and initializes // a new ArrayList. ArrayList myarraylist = new ArrayList(); myarraylist.Add("Welcome"); myarraylist.Add("to"); myarraylist.Add("Geeks"); myarraylist.Add("for"); myarraylist.Add("Geeks"); myarraylist.Add("portal"); // Creates and initializes queue Queue mynewList = new Queue(); mynewList.Enqueue("This"); mynewList.Enqueue("is"); mynewList.Enqueue("C#"); mynewList.Enqueue("tutorial"); // Displays the values of six // elements starting at index 0. ArrayList newarraylist = myarraylist.GetRange(0, 6); Console.WriteLine("Elements are:"); Displaydata(newarraylist, '\n'); // Replaces the values of six elements // starting at index 1 with the values // in the queue. myarraylist.SetRange(2, mynewList); // Displays the values of six // elements starting at index 0. newarraylist = myarraylist.GetRange(0, 6); Console.WriteLine("\nNow elements are:"); Displaydata(newarraylist, '\n'); } public static void Displaydata(IEnumerable myvalueList, char mySeparator) { foreach(Object obj in myvalueList) Console.Write("{0}{1}", mySeparator, obj); Console.WriteLine(); } }
Producción:
Elements are: Welcome to Geeks for Geeks portal Now elements are: Welcome to This is C# tutorial
Ejemplo 2:
// C# program to illustrate the // concept of GetRange() Method using System; using System.Collections; class GFG { // Main method public static void Main() { // Creates and initializes a new ArrayList. ArrayList myarraylist = new ArrayList(); myarraylist.Add("Welcome"); myarraylist.Add("to"); myarraylist.Add("Geeks"); myarraylist.Add("for"); myarraylist.Add("Geeks"); myarraylist.Add("portal"); // Creates and initializes queue Queue mynewList = new Queue(); mynewList.Enqueue("This"); mynewList.Enqueue("is"); mynewList.Enqueue("C#"); mynewList.Enqueue("tutorial"); // Displays the values of six elements ArrayList newarraylist = myarraylist.GetRange(-1, 6); Console.WriteLine("Elements are:"); Displaydata(newarraylist, '\n'); // Replaces the values of six elements // starting at index 1 with the // values in the queue. myarraylist.SetRange(2, mynewList); // Displays the values of six // elements starting at index 0. newarraylist = myarraylist.GetRange(0, 6); Console.WriteLine("Now elements are:"); Displaydata(newarraylist, '\n'); } public static void Displaydata(IEnumerable myvalueList, char mySeparator) { foreach(Object obj in myvalueList) Console.Write("{0}{1}", mySeparator, obj); Console.WriteLine(); } }
Error de tiempo de ejecución:
Excepción no controlada:
System.ArgumentOutOfRangeException: se requiere un número no negativo.
Nombre del parámetro: índice
Referencia:
Publicación traducida automáticamente
Artículo escrito por ankita_saini y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA