Beginner with c# 5

2016-02-19 12:10 8 1 收藏

下面图老师小编要跟大家分享Beginner with c# 5,简单的过程中其实暗藏玄机,还是要细心学习,喜欢还请记得收藏哦!

【 tulaoshi.com - 编程语言 】

1。5 数组类型(Array types)

数组可以是一维的,也可是多维的。数祖的成员可以是整齐的,也可以是变长(jagged)的。

一维的数组是最普通,最简单的。这里值给出一个例子,就不多解释了。*/
using System;
class Test
{
 static void Main() {
  int[] arr = new int[5];
  for (int i = 0; i arr.Length; i++)
   arr[i] = i * i;
  for (int i = 0; i arr.Length; i++)
   Console.WriteLine("arr[{0}] = {1}", i, arr[i]);
 }
}

/* 结果如下:
arr[0] = 0
arr[1] = 1
arr[2] = 4
arr[3] = 9
arr[4] = 16

我们还可以比较的看看多维,规则,变长的数组的定义和赋值:*/
class Test
{
 static void Main() {
  int[] a1 = new int[] {1, 2, 3};                     //一维
  int[,] a2 = new int[,] {{1, 2, 3}, {4, 5, 6}};      //二维
  int[,,] a3 = new int[10, 20, 30];                   //三维
  int[][] j2 = new int[3][];                          //变长
  j2[0] = new int[] {1, 2, 3};
  j2[1] = new int[] {1, 2, 3, 4, 5, 6};
  j2[2] = new int[] {1, 2, 3, 4, 5, 6, 7, 8, 9};
 }
}
/*
上面的例子给出了各种样式的数组。变量a1、a2和a3是规则数组。j2则是变长的数组。
规则数组很容易就可以计算出它们的长度。比如a3的长度是:10*20*30=6000。相反,变长
数组就有点不同,它的每一个维度都必须单独定义。如j2的第一维度是3,第二个是6,第
三个是9,所以总长度是:1*3+1*6+1*9=18。

上面对数组的赋值是严谨的风格,在某种情况下,我们可以简化写法,但我总觉得这种简化
应用限制太多,容易出错。在这里就不作介绍了。这里再给一个例子说明函数中的参数如何
赋值*/
class Test
{
 static void F(long[] arr) {}
 static void Main() {
  F(new longt[] {1, 2, 3});
 }
}

来源:http://www.tulaoshi.com/n/20160219/1600072.html

延伸阅读
About program language such as C++, C#, Java and Delphi, how to choose a good one for a freshman ? This view has pointed by many people here and different person have different ideas. In my opnion, , C# is the first choose for anyone. Why? Because it's different from any other language. C# comes from C++ and Java i...
状态模式主要解决当控制一个对象状态的转换的条件表达过于复杂的情况,使得状态的转换不依赖于整体的操作。本文将通过一个具体的例子说明状态模式的应用。假设下面一个场景:      一个新任务提交后,先是收集数据,数据收集完成后等等分配一台机器,分配到机器后就可以将此任务部署至此机器后就可以通知相关模块开始工作...
What is a GUID For those of you who don''t know, a GUID (pronounced goo''id - Globally unique identifier) is a 128-bit integer that can be used to uniquely identify something. You may store users or products in your database and you want somehow uniquely identify each row in the database. A common approach is to crea...
//MyComposite using System; using System.Collections; //----------------------------------Class FileElement abstract class CFileElement { //Fields protected string name; public CFileElement(string name) { this.name=name; } public abstract void Add(CFileElement e); public abstract void Remove(CFileElement e)...
数组是一种数据结构,其声明方式如下: type[] arrayName; 数组具有以下属性:     1.数组可以是一维、多维或交错的。     2.数值数组元素的默认值设置为零,而引用元素的默认值设置为 null。     3.交错数组是数组的数组,因此,它的元素是引用类型,初始化为 null。     ...

经验教程

325

收藏

72
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部