Array:
double[] balance = new double[10];
double[] balance = { 2340.0, 4523.69, 3421.0};
int [] marks = new int[5] { 99, 98, 92, 97, 95};
int [] marks = new int[] { 99, 98, 92, 97, 95};
多維數(shù)組:
- 多維數(shù)組又稱為矩形數(shù)組
- 每行的列是相同的饺律,和交錯數(shù)組不一樣
string [,] names;
int [ , , ] m;
int [,] a = new int [3,4] {
{0, 1, 2, 3} , /* 初始化索引號為 0 的行 */
{4, 5, 6, 7} , /* 初始化索引號為 1 的行 */
{8, 9, 10, 11} /* 初始化索引號為 2 的行 */
};
int val = a[2,3];
交錯數(shù)組:
- 交錯數(shù)組是數(shù)組的數(shù)組
- 交錯數(shù)組是一維數(shù)組
int [][] scores;
int[][] scores = new int[2][]
{
new int[]{92,93,94},
new int[]{85,66,87,88}
};
params 關(guān)鍵字:
using System;
namespace ArrayApplication
{
class ParamArray
{
public int AddElements(params int[] arr)
{
int sum = 0;
foreach (int i in arr)
{
sum += i;
}
return sum;
}
}
class TestClass
{
static void Main(string[] args)
{
ParamArray app = new ParamArray();
int sum = app.AddElements(512, 720, 250, 567, 889);
Console.WriteLine("總和是: {0}", sum);
Console.ReadKey();
}
}
}
Array類
- Array 類是 C# 中所有數(shù)組的基類,它是在 System 命名空間中定義妓蛮。Array 類提供了各種用于數(shù)組的屬性和方法。