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

数组长度是固定的:(增删改查不方便)
数组是引用类型:所有类型的数组都继承与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();
        }
    }

}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值