這篇文章主要講解了“C#數(shù)組操作舉例分析”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“C#數(shù)組操作舉例分析”吧!
創(chuàng)新互聯(lián)建站是一家從事企業(yè)網(wǎng)站建設(shè)、網(wǎng)站制作、成都網(wǎng)站建設(shè)、行業(yè)門戶網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計制作的專業(yè)的建站公司,擁有經(jīng)驗豐富的網(wǎng)站建設(shè)工程師和網(wǎng)頁設(shè)計人員,具備各種規(guī)模與類型網(wǎng)站建設(shè)的實力,在網(wǎng)站建設(shè)領(lǐng)域樹立了自己獨特的設(shè)計風(fēng)格。自公司成立以來曾獨立設(shè)計制作的站點近1000家。
數(shù)組是相同類型的對象的集合。由于數(shù)組幾乎可以為任意長度,因此可以使用數(shù)組存儲數(shù)千乃至數(shù)百萬個對象,但必須在創(chuàng)建數(shù)組時就確定其大小。數(shù)組中的每項都按索引進行訪問,索引是一個數(shù)字,指示對象在數(shù)組中的存儲位置或槽。數(shù)組既可用于存儲 引用類型,也可用于存儲 值類型。
C#數(shù)組操作程序:
using System;
using System.Collections.Generic;
using System.Text;
namespace ClassAboutArray
{
public class CreateArray
{
///
/// 一維數(shù)組的定義
///
public void testArr1()
{
int[] myIntArr = new int[100];
//定義一個長度為100的int數(shù)組
string[] mystringArr = new string[100];
//定義一個長度為100的string數(shù)組
object[] myObjectArr = new object[100];
//定義一個長度為100的int數(shù)組
int[] myIntArr2 = new int[] { 1, 2, 3 };
//定義一個int數(shù)組,長度為3
string[] mystringArr2 = new string[] { "油", "鹽" };
//定義一個string數(shù)組,長度為2
}
///
/// 多維數(shù)組的定義
///
public void testArr2()
{
int[,] myIntArr = new int[10, 100];
//定義一個10*100的二維int數(shù)組
string[, ,] mystringArr = new string[2, 2, 3];
//定義一個2*2*3的三維string數(shù)組
int[,] myIntArr2 = new int[,] { { 1, 2, 3 }, { -1, -2, -3 } };
//定義一個2*3的二維int數(shù)組,并初始化
string[,] mystringArr2 = new string[,] { { "油", "鹽" }, { "《圍城》", "《晨露》" } };
//定義一個2*2的二維string數(shù)組,并初始化
}
///
/// 交錯數(shù)組的定義
///
public void testArr3()
{
int[][] myJaggedArray = new int[3][];
myJaggedArray[0] = new int[5];
myJaggedArray[1] = new int[4];
myJaggedArray[2] = new int[2];
int[][] myJaggedArray2 = new int[][]
{
new int[] {1,3,5,7,9},
new int[] {0,2,4,6},
new int[] {11,22}
};
}
}
public class TraverseArray
{
///
/// 使用GetLowerBound|GetUpperBound遍歷數(shù)組
///
public void test1()
{
//定義二維數(shù)組
string[,] myStrArr2 = new string[,]
{ { "油", "鹽" }, { "《圍城》", "《晨露》" }, { "毛毛熊", "Snoopy" } };//循環(huán)輸出
for (int i = myStrArr2.GetLowerBound(0); i <= myStrArr2.GetUpperBound(0); i++)
{
Console.WriteLine("item{0}", i);
for (int j = myStrArr2.GetLowerBound(1); j <= myStrArr2.GetUpperBound(1); j++)
{
Console.WriteLine(" item{0}{1}:{2}", i, j, myStrArr2.GetValue(i, j));
}
}
}
///
/// 使用foreach遍歷數(shù)組
///
public void test2()
{
//定義二維數(shù)組
string[,] myStrArr2 = new string[,]
{ { "油", "鹽" }, { "《圍城》", "《晨露》" }, { "毛毛熊", "Snoopy" } };//循環(huán)輸出
foreach (string item in myStrArr2)
{
{
Console.WriteLine("{0}", item);
}
}
}
}
public class SortArray
{
///
/// 利用Sort方法進行數(shù)組排序
///
public void test1()
{
//定義數(shù)組
int[] myArr = { 5, 4, 3, 2, 1 };
//輸出原始數(shù)組:原始數(shù)組:5->4->3->2->1->
Console.WriteLine("原始數(shù)組:");
for (int i = 0; i < myArr.Length; i++)
Console.Write("{0}->", myArr[i]);
Console.WriteLine();
//對數(shù)組排序
Array.Sort(myArr);
//并輸出排序后的數(shù)組:1->2->3->4->5->
Console.WriteLine("排序以后數(shù)組:");
for (int i = 0; i < myArr.Length; i++)
Console.Write("{0}->", myArr[i]);
}
///
/// 多個數(shù)組的關(guān)鍵字排序
///
public void test2()
{
//定義數(shù)組
int[] arrSid = { 5, 4, 3, 2, 1 };
string[] arrSname = { "張三", "李四", "王五", "麻子", "淘氣" };
//輸出原始數(shù)組:原始數(shù)組:張三(5)->李四(4)->王五(3)->麻子(2)->淘氣(1)->
Console.WriteLine("原始數(shù)組:");
for (int i = 0; i < arrSid.Length; i++)
Console.Write("{0}({1})->", arrSname[i], arrSid[i]);
Console.WriteLine();
//根據(jù)學(xué)號關(guān)鍵字排序
Array.Sort(arrSid, arrSname);
//并輸出排序后的數(shù)組:淘氣(1)->麻子(2)->王五(3)->李四(4)->張三(5)
Console.WriteLine("排序以后數(shù)組:");
for (int i = 0; i < arrSid.Length; i++)
Console.Write("{0}({1})->", arrSname[i], arrSid[i]);
}
}
public class SearchArray
{
///
/// 利用BinarySearch方法搜索元素
///
public void test1()
{
//定義數(shù)組
int[] myArr = { 5, 4, 3, 2, 1 };
//對數(shù)組排序
Array.Sort(myArr);
//搜索
int target = 3;
int result = Array.BinarySearch(myArr, target); //2
Console.WriteLine("{0}的下標(biāo)為{1}", target, result); //2
}
///
/// 判斷是否包含某個值
///
public void test2()
{
//定義數(shù)組
string[] arrSname = { "張三", "李四", "王五", "麻子", "淘氣" };
//判斷是否含有某值
string target = "王五";
bool result = ((System.Collections.IList)arrSname).Contains(target);
Console.WriteLine("包含{0}?{1}", target, result); //true
}
}
public class ReverseArray
{
///
/// 利用Reverse方法反轉(zhuǎn)數(shù)組
///
public void test1()
{
//定義數(shù)組
int[] myArr = { 5, 4, 3, 2, 1 };
//輸出原始數(shù)組:原始數(shù)組:5->4->3->2->1->
Console.WriteLine("原始數(shù)組:");
for (int i = 0; i < myArr.Length; i++)
Console.Write("{0}->", myArr[i]);
Console.WriteLine();
//對數(shù)組反轉(zhuǎn)
Array.Reverse(myArr);
//并輸出反轉(zhuǎn)后的數(shù)組:1->2->3->4->5->
Console.WriteLine("反轉(zhuǎn)以后數(shù)組:");
for (int i = 0; i < myArr.Length; i++)
Console.Write("{0}->", myArr[i]);
}
}
public class CopyArray
{
///
/// 利用Copy靜態(tài)方法復(fù)制數(shù)組
///
public void test1()
{
//定義數(shù)組
int[] myArr = { 5, 4, 3, 2, 1 };
//輸出原始數(shù)組:原始數(shù)組:5->4->3->2->1->
Console.WriteLine("原始數(shù)組:");
for (int i = 0; i < myArr.Length; i++)
Console.Write("{0}->", myArr[i]);
Console.WriteLine();
//復(fù)制數(shù)組
int[] newnewArr = new int[3];
Array.Copy(myArr, newArr, 3);
//并輸出反復(fù)制的數(shù)組:5->4->3->
Console.WriteLine("復(fù)制數(shù)組:");
for (int i = 0; i < newArr.Length; i++)
Console.Write("{0}->", newArr[i]);
}
///
/// 利用CopyTo實例方法復(fù)制數(shù)組
///
public void test2()
{
//定義數(shù)組
int[] myArr = { 5, 4, 3, 2, 1 };
//輸出原始數(shù)組:原始數(shù)組:5->4->3->2->1->
Console.WriteLine("原始數(shù)組:");
for (int i = 0; i < myArr.Length; i++)
Console.Write("{0}->", myArr[i]);
Console.WriteLine();
//復(fù)制數(shù)組
int[] newnewArr = new int[7];
myArr.CopyTo(newArr, 2);
//并輸出反復(fù)制的數(shù)組:0->0->5->4->3->2->1->
Console.WriteLine("復(fù)制數(shù)組:");
for (int i = 0; i < newArr.Length; i++)
Console.Write("{0}->", newArr[i]);
}
}
public class DynamicCreateArray
{
///
/// 利用CreateInstance動態(tài)創(chuàng)建數(shù)組
///
public void test1()
{
//定義長度數(shù)組
int[] lengthsArr = new int[] { 3, 4 };
int[] lowerBoundsArr = { 1, 11 };
Array arr = Array.CreateInstance(Type.GetType("System.Int32"), lengthsArr, lowerBoundsArr);
Random r = new Random(); //聲明一個隨機數(shù)對象
//循環(huán)賦值、輸出
for (int i = arr.GetLowerBound(0) - 1; i < arr.GetUpperBound(0) - 1; i++)
{
for (int j = arr.GetLowerBound(1) - 1; j < arr.GetUpperBound(1) - 1; j++)
{
arr.SetValue((int)r.Next() % 100, i, j);//用1~100的隨即數(shù)賦值
Console.WriteLine("arr[{0},{1}]={3}", i, j, arr.GetValue(i, j));
}
}
}
}
}
感謝各位的閱讀,以上就是“C#數(shù)組操作舉例分析”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對C#數(shù)組操作舉例分析這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識點的文章,歡迎關(guān)注!