在《.NET框架程序设计》中有这样的一个例子:

关于装箱的一个问题using System;
关于装箱的一个问题
关于装箱的一个问题
struct Point : ICloneable
}


里面提到p在执行ToString方法的时候不会发生装箱。通过看IL代码确实是这么回事,但是再去查看Point的ToString方法的IL代码,发现在其中进行了装箱操作,那么是不是总的说来还是进行了装箱操作呢?

IL代码如下:

.method public hidebysig virtual instance string
        ToString() cil managed
{
  // Code size       37 (0x25)
  .maxstack  3
  .locals init (string V_0)
  IL_0000:  ldstr      "({0}, {1}"
  IL_0005:  ldarg.0
  IL_0006:  ldfld      int32 Point::x
  IL_000b:  box        [mscorlib]System.Int32
  IL_0010:  ldarg.0
  IL_0011:  ldfld      int32 Point::y
  IL_0016:  box        [mscorlib]System.Int32
  IL_001b:  call       string [mscorlib]System.String::Format(string,
                                                              object,
                                                              object)
  IL_0020:  stloc.0
  IL_0021:  br.s       IL_0023
  IL_0023:  ldloc.0
  IL_0024:  ret
} // end of method Point::ToString

请各位高手指教。

相关文章:

  • 2022-02-01
  • 2021-09-18
  • 2021-04-22
  • 2022-03-07
  • 2021-04-26
  • 2021-07-11
  • 2021-04-30
猜你喜欢
  • 2021-11-10
  • 2021-12-14
  • 2021-06-04
  • 2021-12-06
  • 2021-10-28
  • 2021-09-09
  • 2021-11-21
相关资源
相似解决方案