博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
给数组扩容的几种方式
阅读量:6002 次
发布时间:2019-06-20

本文共 1312 字,大约阅读时间需要 4 分钟。

假设有一个规定长度的数组,如何扩容呢?最容易想到的是通过如下方式扩容:

 
class Program
{
static void Main(string[] args)
{
int[] arrs = new[] {1, 2, 3, 4, 5};
arrs[5] = 6;
}
}

报错:未处理IndexOutOfRanageException,索引超出了数组界限。

 

□ 创建一个扩容的临时数组,然后赋值给原数组,使用循环遍历方式

 
static void Main(string[] args)
{
int[] arrs = new[] {1, 2, 3, 4, 5};
int[] temp = new int[arrs.Length + 1];
 
//遍历arrs数组,把该数组的元素全部赋值给temp数组
for (int i = 0; i < arrs.Length; i++)
{
temp[i] = arrs[i];
}
 
//把临时数组赋值给原数组,这时原数组已经扩容
arrs = temp;
 
//给扩容后原数组的最后一个位置赋值
arrs[arrs.Length - 1] = 6;
 
foreach (var item in arrs)
{
Console.WriteLine(item);
}
Console.ReadKey();
}
 

 

□ 创建一个扩容的临时数组,然后赋值给原数组,使用Array的静态方法

像这种平常的数组间的拷贝,Array类肯定为我们准备了静态方法:Array.Copy()。

 
static void Main(string[] args)
{
int[] arrs = new[] {1, 2, 3, 4, 5};
int[] temp = new int[arrs.Length + 1];
 
Array.Copy(arrs, temp, arrs.Length);
 
//把临时数组赋值给原数组,这时原数组已经扩容
arrs = temp;
 
//给扩容后原数组的最后一个位置赋值
arrs[arrs.Length - 1] = 6;
 
foreach (var item in arrs)
{
Console.WriteLine(item);
}
Console.ReadKey();
}
   

□ 使用Array的静态方法扩容

但是,拷贝来拷贝去显得比较繁琐,我们也可以使用Array.Resize()方法给数组扩容。

 
static void Main(string[] args)
{
int[] arrs = new[] {1, 2, 3, 4, 5};
 
Array.Resize(ref arrs, arrs.Length + 1);
 
//给扩容后原数组的最后一个位置赋值
arrs[arrs.Length - 1] = 6;
 
foreach (var item in arrs)
{
Console.WriteLine(item);
}
Console.ReadKey();
}
 

 

总结:数组扩容优先考虑使用Array的静态方法Resize,其次考虑把一个扩容的、临时的数组赋值给原数组。

转载地址:http://lwdmx.baihongyu.com/

你可能感兴趣的文章
Magento错误处理
查看>>
茵茵的第一课
查看>>
Linux实战教学笔记53:开源虚拟化KVM(一)搭建部署与概述
查看>>
PAT 1007
查看>>
USACO习题:Friday the Thirteenth
查看>>
C++ VS2012 内存泄露检测
查看>>
zabbix 批量添加聚合图形
查看>>
北京交通大学第六届新生程序设计竞赛题解
查看>>
求解点关于直线的距离、垂足、对称点公式
查看>>
洛谷 P1577 切绳子【二分答案】
查看>>
用 Google Map 的 Geocoder 接口来反向地址解析
查看>>
在中小型公司如何做好测试——论测试计划的重要性
查看>>
BSS段、数据段、代码段、堆与栈
查看>>
python调用c/c++写的dll
查看>>
r语言ggplot2误差棒图快速指南
查看>>
python之处理异常
查看>>
c++中的虚函数
查看>>
遍历form表单里面的表单元素,取其value
查看>>
PHP TP框架基础
查看>>
directive ngChecked
查看>>