c# – 获取ref参数的地址

c# – 获取ref参数的地址,第1张

概述我的代码如下 class MyClass{ static int iField = 42; static void Test(ref int arg) { unsafe { fixed(void* pField = &iField) fixed(void* pArg = &arg) 我的代码如下

class MyClass{    static int iFIEld = 42;    static voID Test(ref int arg)    {         unsafe         {            fixed(voID* pFIEld = &iFIEld)            fixed(voID* pArg = &arg)            {                Console.Writeline ("{0},{1}",(int)pArg,(int)pFIEld);                //output: 165451772,165451772            }         }    }    static voID Main()    {        Test(ref iFIEld);    }}

我想知道参考ref参数地址是否与上面测试中显示的一样可靠.

解决方法 据我所知,是的,当你在固定区块时,GC不会重新定位arg.一旦在固定块之外,变量就被取消固定,因此需要由GC重新定位.

关于一个静态结构/类/字段保持其地址固定在内存中,答案是否定的.它们像任何其他对象一样被重新定位.由于它被标记为静态,因此没有保证在内存中不会有未来的重定位.

静态的意义与编译器在某个类/结构/字段的编译时具有的知识和确定性有关.它与内存位置无关,它们是否固定等等.用Eric lippert的话来说:

Static methods are called “static” because it can always be determined exactly,at compile time,what method will be called. That is,the method can be resolved solely by static analysis of the code.

总结

以上是内存溢出为你收集整理的c# – 获取ref参数的地址全部内容,希望文章能够帮你解决c# – 获取ref参数的地址所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1228188.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-05
下一篇 2022-06-05

发表评论

登录后才能评论

评论列表(0条)

保存