主页 > 知识库 > .NET 中的 常量字段const应用介绍

.NET 中的 常量字段const应用介绍

热门标签:百度ai地图标注 同安公安400电话怎么申请流程 预测式外呼系统使用说明 南阳外呼系统定制化 申请400电话手续 苹果手机凯立德地图标注 玉林市机器人外呼系统哪家好 电话机器人软件销售工作 合肥电销外呼系统哪家公司做的好

C#中,当使用常数符号const时,编译器首先从定义常数的模块的元数据中找出该符号,并直接取出常数的值,然后将之嵌入到编译后产生的IL代码中,所以常数在运行时不需要分配任何内存,当然也就无法获取常数的地址,也无法使用引用了。

如下代码:

复制代码 代码如下:

public class ConstTest
{
public const int ConstInt = 1000;
}

将其编译成ConstTest.dll文件,并在如下代码中引用此ConstTest.dll文件。
复制代码 代码如下:

using System;
class Program
{
public static void Main(string[] args)
{
Console.WriteLine(ConstTest.ConstInt);//结果输出为1000;
}
}

编译运行此Main.exe程序,结果输出为1000。之后将bin文件夹中的ConstTest.dll引用文件删除,直接运行Main.exe文件,程序运行正常,结果输出1000。

如果将ConstTest重新定义为:
复制代码 代码如下:

public class ConstTest
{
//只能在定义时声明
public const int ConstInt = 1000;
public readonly int ReadOnlyInt = 100;
public static int StaticInt = 150;
public ConstTest()
{
ReadOnlyInt = 101;
StaticInt = 151;
}
//static 前面不可加修饰符
static ConstTest()
{
//此处只能初始化static变量
StaticInt = 152;
}
}

重新编译成ConstTest.dll并向调用程序Main添加此引用后,再编译调用程序,生成新的Main.exe,即使再次删除ConstTest.dll文件后,Main.exe运行正常,结果输出1000。

将Main程序更改如下:
复制代码 代码如下:

class Program
{
public static void Main(string[] args)
{
Console.WriteLine(ConstTest.ConstInt);//输出1000
Console.WriteLine(ConstTest.StaticInt);//输出152
ConstTest mc = new ConstTest();
Console.WriteLine(ConstTest.StaticInt);//输出151
}
}

重新编译Main程序,如果此时再把ConstTest.dll删除,则会报错。

如此可以看出,如果某些工程引用到了ConstTest.dll,如果后来因为变动,改变了ConstInt常量的值,即使引用重新编译的ConstTest.dll,也无法更改Main.exe中的数据(可以把ConstInt值改为其它值,然后将编译后的ConstTest.dll拷贝到Main.exe的bin文件夹下试试看),这时,只能添加ConstTest.dll引用,并且重新编译Main程序才行。

标签:台州 南京 南京 南昌 扬州 淄博 海南 嘉兴

巨人网络通讯声明:本文标题《.NET 中的 常量字段const应用介绍》,本文关键词  .NET,中的,常量,字段,const,;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 下面列出与本文章《.NET 中的 常量字段const应用介绍》相关的同类信息!
  • 本页收集关于.NET 中的 常量字段const应用介绍的相关信息资讯供网民参考!
  • 推荐文章