数组杂记

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数组杂记相关的知识,希望对你有一定的参考价值。

int[] nums = { 12,13,14,15,16,17,18}; //初始化字符串
            int length = Convert.ToInt32(nums.Length);//转化
            //Console.WriteLine(length); length=7
            string[] str = new string[length];
            for (int i = 0; i < str.Length; i++)
            {
                str[i] = Convert.ToString(nums[i]);
            }
            //输出新数组
            Console.Write("新数组是:");
            for (int i = 0; i < str.Length; i++)
            {
                Console.Write(" "+str[i]);
            }

                Console.WriteLine();

 

以上是关于数组杂记的主要内容,如果未能解决你的问题,请参考以下文章

PHP杂记190428

js杂记

VSCode自定义代码片段—— 数组的响应式方法

VSCode自定义代码片段10—— 数组的响应式方法

linux的shell特性三兼杂记

JavaScript学习杂记