代码拉取完成,页面将自动刷新
using System;
namespace _016_默认数组元素初始化_值类型和引用类型对比
{
public struct Point { public int X, Y; }
public class Pointc { public int X, Y; }
class Program
{
static void Main(string[] args)
{
Point[] a = new Point[1000];
int x = a[500].X; // 0
Console.WriteLine(x);
Pointc[] pc = new Pointc[1000];
//int y = pc[500].X; // 运行时错误,NullReferenceException异常
// 为了避免这个错误,我们必须在实例化之后显式实例化1000个Pointc实例:
for (int i = 0; i < pc.Length; i++)
{
pc[i] = new Pointc();
}
int y = pc[500].X;
Console.WriteLine(y);
// 无论是任何元素类型,数组本身总是引用类型对象。
// 例如,下面的语句是合法的:
int[] int_a = null;
Console.ReadKey();
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。