当对整数文字(例如 ToString)调用对象方法时,CLR 是否首先装箱文字?

发布于 2024-10-18 03:57:12 字数 134 浏览 1 评论 0原文

我想知道是否进行装箱以便在整数字面 (5) 上调用 ToString():

5.ToString();

哦,如果没有,那么发生了什么才能让 CLR 能够调用 ToString() 方法?

I wonder if boxing is taking place in order for ToString() to be called on the integer literal (5):

5.ToString();

Oh, and if not, what is taking place in order for the CLR to be able to call the ToString() method?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

め七分饶幸 2024-10-25 03:57:12

不,这不需要装箱 - 因为 int 覆盖 ToString。编译器可以准确地确定将调用哪个方法,因此不需要经过虚拟分派。它甚至不使用 callvirt - 该调用将对应于

call instance string [mscorlib]System.Int32::ToString()

If you don override ToString() (etc) in a struct, then requests to the virtual方法需要拳击。

No, that doesn't require boxing - because int overrides ToString. The compiler can determine exactly which method will be called, so it doesn't need to go through virtual dispatch. It doesn't even use callvirt - that call will correspond to IL of

call instance string [mscorlib]System.Int32::ToString()

If you don't override ToString() (etc) in a struct, then calls to the virtual method will require boxing.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文