C# 數組Array

来源:https://www.cnblogs.com/xiongmujiang/archive/2019/04/16/10715558.html
-Advertisement-
Play Games

數組是對相同類型的一組數據的封裝。數組定義的時候,要說明是對哪一種類型的封裝,並且要指定長度。 運行結果如下: 數組是一種數據類型,並且二維數組在圖像處理中會應用。一維數組的起始下標是[0]。二維數組的起始下標是[0,0]。交錯也稱參差數組的起始下標是[0][0]。 數組一定是固定長度和類型確定並且 ...


數組是對相同類型的一組數據的封裝。數組定義的時候,要說明是對哪一種類型的封裝,並且要指定長度。

  1 using System;
  2 using System.Collections.Generic;
  3 using System.Linq;
  4 using System.Text;
  5 
  6 namespace TestArrayList
  7 {
  8     class Program
  9     {
 10         static void Main(string[] args)
 11         {
 12             //System.Array
 13             //1、數組[]特定類型、固定長度
 14             string[] str1 = new string[3];
 15             str1[0] = "a";
 16             str1[1] = "b";
 17             str1[2] = "c";
 18             Console.WriteLine(str1[2]);
 19 
 20             string[] str2 = new string[] { "a", "b", "c" };
 21             Console.WriteLine(str2[0]);
 22 
 23             string[] str3 = { "a", "b", "c" };
 24             Console.WriteLine(str3[0]);
 25 
 26             //2.二維數組
 27             //int[,] intArray = new int 
 28             int[,] intArray = new int[2, 3];
 29             intArray[0, 0] = 1;
 30             intArray[0, 1] = 11;
 31             intArray[0, 2] = 111;
 32             intArray[1, 0] = 2;
 33             intArray[1, 1] = 22;
 34             intArray[1, 2] = 222;
 35             Console.WriteLine("{0},{1},{2}", intArray[0, 0], intArray[0, 1], intArray[0, 2]);
 36             Console.WriteLine("{0},{1},{2}", intArray[1, 0], intArray[1, 1], intArray[1, 2]);
 37 
 38             //3多維數組
 39             int[, ,] intArray1 = new int[,,]
 40             {
 41                {{1,1},{11,11},{111,111}},
 42                {{2,2},{22,22},{33,33}},
 43                {{3,3},{33,33},{333,333}}
 44             };
 45             Console.WriteLine("多維數組");
 46             Console.WriteLine("{0},{1},{2},{3},{4},{5}", intArray1[0, 0, 0], intArray1[0, 0, 1], intArray1[0, 1, 0], intArray1[0, 1, 1], intArray1[0, 2, 0], intArray1[0, 2, 1]);
 47             Console.WriteLine("{0},{1},{2},{3}", intArray1[1, 0, 0], intArray1[1, 0, 1], intArray1[1, 1, 0], intArray1[1, 1, 1]);
 48             Console.WriteLine("{0},{1},{2},{3},{4},{5}", intArray1[2, 0, 0], intArray1[2, 0, 1], intArray1[2, 1, 0], intArray1[2, 1, 1], intArray1[2, 2, 0], intArray1[2, 2, 1]);
 49 
 50             //4交錯數組即數組的數組
 51             int[][] intArray2 = new int[4][];
 52             intArray2[0] = new int[] { 1 };
 53             intArray2[1] = new int[] { 2, 22 };
 54             intArray2[2] = new int[] { 3, 33, 333 };
 55             intArray2[3] = new int[] { 4, 44, 444, 4444 };
 56             Console.WriteLine("交錯數組");
 57             for (int i = 0; i < intArray2.Length; i++)
 58             {
 59                 for (int j = 0; j < intArray2[i].Length; j++)
 60                 {
 61                     Console.WriteLine("{0}", intArray2[i][j]);
 62                 }
 63             }
 64             Console.ReadKey();
 65             int[] myIntArray = new int[5] { 1, 2, 3, 4, 5 };
 66             Object[] myObjArray = new Object[5] { 26, 27, 28, 29, 30 };
 67             Console.WriteLine("Initially,");
 68             Console.Write("integer array:");
 69             PrintValues(myIntArray);
 70             Console.Write("Object array: ");
 71             PrintValues(myObjArray);
 72 
 73             System.Array.Copy(myIntArray, myObjArray, 2);
 74 
 75             Console.WriteLine("\n After copying the first two elements of the integer array to the Object array.");
 76             Console.Write("integer array:");
 77             PrintValues(myIntArray);
 78             Console.Write("Object array: ");
 79             PrintValues(myObjArray);
 80 
 81             System.Array.Copy(myObjArray, myObjArray.GetUpperBound(0) - 1, myIntArray, myIntArray.GetUpperBound(0) - 1, 2);
 82 
 83             Console.WriteLine("\nAfter copying the last two elements of the object array to the integer array,");
 84             Console.Write("integer array:");
 85             PrintValues(myIntArray);
 86             Console.Write("Object array:");
 87             PrintValues(myObjArray);
 88             Console.ReadKey();
 89         }
 90 
 91         public static void PrintValues(Object[] myArr)
 92         {
 93             foreach (Object i in myArr)
 94             {
 95                 Console.Write("\t{0}", i);
 96             }
 97             Console.WriteLine();
 98         }
 99 
100         public static void PrintValues(int[] myArr)
101         {
102             foreach (int i in myArr)
103             {
104                 Console.Write("\t{0}", i);
105             }
106             Console.WriteLine();
107         }
108     }
109 }

運行結果如下:

數組是一種數據類型,並且二維數組在圖像處理中會應用。一維數組的起始下標是[0]。二維數組的起始下標是[0,0]。交錯也稱參差數組的起始下標是[0][0]。

數組一定是固定長度和類型確定並且有序的,這種呆板的數據類型,導致它的INSERT,非常不方便,於是有了ArrayList

那麼C#中數組是引用類型?還是值類型?C#中數組是引用類型,為什麼是引用類型,依據是什麼?


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 1.瀏覽器為什麼不能跨域? 瀏覽器有一個基本的安全策略--同源策略。為保證用戶的信息安全,它對不同源的文檔或腳本對當前文檔的讀寫操作做了限制。功能變數名稱,子功能變數名稱,埠號或協議不同都屬於不同源,當腳本被認為是來自不同源時,瀏覽器雖然會發出這個請求,但是會攔截響應內容。 2.解決跨域問題 CORS(Cross ...
  • 最近公司項目需求,要做一個百度地圖電子圍欄的功能,在網上查了一下資料,看了很多博客,大多數都寫的不是很詳細,我看的雲里霧裡的,最後終於集合所有的幾篇資料,自己做出了一個簡單的demo,下麵將過程記錄和分享一下,希望給予有需要同學一些幫助,我這個人說話比較啰嗦,所以寫的一定會很詳細的,哈哈!閑言少敘, ...
  • 委托既可以封裝一個方法,又可以對同一類型的方法進行封裝,它就是多播委托 運行結果: ...
  • 技術含量較低,主要是通過VBA代碼轉換成c#代碼而來,從而實現圖片批量插入、刪除、另存為的批量操作,增加文檔使用的通用性。 插件主要界面如下: 主要代碼如下: ...
  • Excel表格中,由於各種數據的複雜性,可能存在單元格中的數據字型大小大小、數據內容長度不一而出現,列寬過寬、過窄或者行高過大、過小的問題。常見的解決方法是調整行高、列寬。在Microsoft Excel中,在單元格格式設置中可手動設置自適應行高或自適應列寬,但通過代碼,我們可以通過方法AutoFitC ...
  • 問題的詳細描述: C#在開發過程中使用Aspose.word.dll庫去實現word套打功能。但是,最近客戶反映出現了一個問題,在列印文檔的時候,系統報錯。經過定位分析發現是Aspose.word.dll中的Document對象在實例化的時候出現異常,而且是Aspose.word.dll內部異常。 ...
  • 在C# 1.0中提出了一種新特性叫作:委托。委托本質上一種類型。是對特定方法的抽象,定義委托後,可以將方法封裝,把方法當參數,傳遞 運行結果: 通過WinForm小程式,探討了一下委托。學習、理解委托是學習多線程的基礎 ...
  • 在C#中值類型都是由System.ValueType的直接派生類,System.ValueType本身又是直接從System.Object派生的。派生的意思是‘利用繼承機制,新的類可以從已有的類中生出來‘。簡單點就是‘粑粑生娃’。有時是‘爺爺生娃‘例如:枚舉都從System.Enum抽象類派生,而後 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...