C#学习笔记集合类型之数组(3)

来源:互联网 发布:淘宝买的鲜人参怎么样 编辑:程序博客网 时间:2024/06/14 08:12
数组长度是固定的:(增删改查不方便)
数组是引用类型:所有类型的数组都继承与System.Array
注意二维数组与数组的数组之间的区别:
        二维数组行和列都为固定长度,数组的数组每行的元素个数即每行的列数不确定。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            int[] numbers = new int[5];//一维数组
            int[] numbers1 = new int[5]{1,2,3,4,5};
            int[] numbers2 = { 1, 2, 3, 4, 5 };

            string[,] names = new string[5, 4];//二维数组
            string[,] names2 = { {"g","k"},{"h","j"}};

            byte[][]scores=new byte[5][];//数组的数组,每一行的长度都不固定
            int[][] numbers3 = { new int[] { 1, 2, 3 }, new int[] { 4, 5, 6, 7 } };

            foreach(int i in numbers2){
                Console.WriteLine(i);
            }


            //数组的初始化
            for (int i = 0; i < scores.Length; i++)
            {
                scores[i] = new byte[i + 3];
            }
            //输出每一行的列数
            for (int i = 0; i < scores.Length; i++ ) {
                Console.WriteLine("Length of row{0} is {i}", i, scores[i].Length);
            }
            Console.ReadLine();
        }
    }

}
0 0