C# |数组列表,其元素是指定值的副本
原文:https://www . geesforgeks . org/c-sharp-ArrayList-其元素是指定值的副本/
数组列表。Repeat(Object,Int32)方法用于返回数组列表,该列表的元素是指定值的副本。或者换句话说,当你想在数组列表中重复一个指定的元素时,使用这个方法。此方法为 O(n)运算,其中 n 为应复制项目的次数。
语法:
public static ArrayList Repeat (object item, int count);
参数:
项:是在新数组列表中复制多次的对象。该值可以为空。 计数:统计项应复制的次数。
返回值:该方法返回一个数组列表,其中包含计数个元素,所有元素都是项的副本。
异常:如果计数值小于零,则该方法将给出argumentout of range Exception。
下面给出了一些例子,以便更好地理解实现:
例 1:
// C# program to illustrate the use of
// ArrayList.Repeat(Object, Int32) Method
using System;
using System.Collections;
class GFG {
// Main method
public static void Main()
{
// Create and repeat the element
// of ArrayList "mylist"
ArrayList mylist = ArrayList.Repeat("GFG", 6);
// Display element
foreach(Object ob in mylist)
{
Console.WriteLine(ob);
}
// Display and count the total number of element
Console.WriteLine("The count of the item is : {0}", mylist.Count);
}
}
Output:
GFG
GFG
GFG
GFG
GFG
GFG
The count of the item is : 6
例 2:
// C# program to illustrate the use of
// ArrayList.Repeat(Object, Int32) Method
using System;
using System.Collections;
class GFG {
// Main method
public static void Main()
{
// Create and repeat the
// element of mylist ArrayList
// this will give runtime error
// as count is less than 0
ArrayList mylist = ArrayList.Repeat(43, -1);
// Display element
foreach(Object ob in mylist)
{
Console.WriteLine(ob);
}
// Display and count the total number of element
Console.WriteLine("The count of the item is : {0}", mylist.Count);
}
}
运行时错误:
未处理异常: 系统。ArgumentOutOfRangeException:要求非负数。 参数名称:计数
参考:
版权属于:月萌API www.moonapi.com,转载请注明出处