我已经使用了程序中的三个字段并且在使用上有所不同,但我很困惑这些字段存储在哪里?在数据段(堆栈或堆?)或代码段?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# – 为静态,常量和只读字段分配内存?
基础教程推荐
- C#类和结构详解 2023-05-30
- linux – 如何在Debian Jessie中安装dotnet core sdk 2023-09-26
- unity实现动态排行榜 2023-04-27
- ZooKeeper的安装及部署教程 2023-01-22
- 一个读写csv文件的C#类 2022-11-06
- winform把Office转成PDF文件 2023-06-14
- C# windows语音识别与朗读实例 2023-04-27
- C#控制台实现飞行棋小游戏 2023-04-22
- C# 调用WebService的方法 2023-03-09
- C# List实现行转列的通用方案 2022-11-02