CIL堆栈交换指令

发布于 2024-07-07 19:43:42 字数 30 浏览 8 评论 0原文

是否有 CIL 指令来交换堆栈中的前两个元素?

Is there a CIL instruction to exchange the first two elements in the stack?

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

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

发布评论

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

评论(4

花想c 2024-07-14 19:43:42

不存在单一指令交换。 但是,使用 stlocpopldloc,您应该能够完成交换。

There is no single instruction exchange. However, using stloc, pop, and ldloc, you should be able to accomplish your exchange.

梦明 2024-07-14 19:43:42

不可以。交换元素的唯一方法是将顶部的两个元素弹出到局部变量,然后以相反的顺序推送它们。

No. The only way to swap elements is to pop the top two elements to locals, then push them in reverse order.

指尖凝香 2024-07-14 19:43:42

查看 CIL 指令列表,似乎没有一条指令可以交换堆栈顶部的两个元素。 您必须采用旧的弹出/推送方式。

Looking at a list of CIL instructions there doesn't appear to be a single instruction that exchanges the two elements at the top of the stack. You'll have to do it the old pop/push way.

夏末的微笑 2024-07-14 19:43:42

为了便于将来参考,您可以创建一个程序集来执行您想要学习 IL 的操作,然后在 Reflector 中查看该程序集。 您可以选择代码使用的语言,IL 是其中之一。 我在试图弄清楚如何编写动态方法时这样做了......

For future reference, you can create an assembly that does what you want to learn the IL for, then view the assembly in Reflector. You can select the language you wish the code to be in, and IL is one of the options. I did this when trying to figure out how to code a dynamic method...

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