c# – 为静态,常量和只读字段分配内存?

我已经使用了程序中的三个字段并且在使用上有所不同,但我很困惑这些字段存储在哪里?在数据段(堆栈或堆?)或代码段?static int a;const int b=1235;readonly int c;在ILDASM中,字段描述如下for static:.field p...

我已经使用了程序中的三个字段并且在使用上有所不同,但我很困惑这些字段存储在哪里?在数据段(堆栈或堆?)或代码段?

static int a;
const int b=1235;
readonly int c;

在ILDASM中,字段描述如下

for static:.field private static int32 a

for constant:.field private static literal int32 b = int32(0x000004D3)

对于readonly:.field private initonly int32 c

解决方法:

如您所知const是静态的,这意味着它存储在堆中. Readonly就像一个成员.就像任何其他成员一样,readonly的值也会存储在堆上.
有关const和readonly的任何更深入的参考,请参阅下面的链接.
https://blogs.msdn.microsoft.com/csharpfaq/2004/12/03/what-is-the-difference-between-const-and-static-readonly/

本文标题为:c# – 为静态,常量和只读字段分配内存?

基础教程推荐