必须先声明 数组的长度 才可以的使用的.
string[] a=new string[5];
string[] b=new string[7];
string[] c;
那么就必须先
c=new string[(a.length+b.length)]; //声明 数组 c 的长度.
//赋值
int index=0;
for(int i=0;i
c[index]=a[i];
index++;
}
for(int j=0;j
c[index]=b[j];
index++;
}
这样,就可以将 数组 a 和数组 b 的数据 付到 数组 c 中,
其实,在某些地方,用数组很麻烦——必须先规定长度,才能赋值使用。
如果,楼主 学到了 泛型集合 的话,其实,会发现 泛型集合 远比 数组 方便,因为, 泛型集合 可以随时添加 数据,随时 剔除 数据。根本不用管什么 个数的问题。
希望对楼主有帮助。
若要实现数组相加,必选先声明数组的长度 ,
string[] a=new string[5];
string[] b=new string[7];
string[] c;
c=new string[(a.length+b.length)]; //声明 数组 c 的长度.
//赋值
int index=0;
for(int i=0;i
c[index]=a[i];
index++;
}
for(int j=0;j
c[index]=b[j];
index++;
}
上述操作可将数组a和数组b的数据付到数组c中。也就实现了数组的相加。
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
namespace ConsoleApplication3
{
class Program
{
static void Main(string[] args)
{
int[] a ={ 1, 2, 3 };
int[] b ={ 4, 5, 6 };
int[] c = new int[a.Length+b.Length];
a.CopyTo(c, 0);
b.CopyTo(c, a.Length);
Console.Read();
}
}
}
刚刚专门给你写的,c是第三个数组,注意copyto是浅拷贝,如果你的数组存放的是引用类型容易出现bug,如果是值类型用此方法比较简单。
可以先声明三个数组 在前两个都已经实例化了之后(知道了大小之后) 来初始化第三个 然后用两个for循环 不久把前两个添加到第三个了
什么相加 是值相加 还是数据 连接
都很简单啊