博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MSIL条件跳转(简单注释)
阅读量:6476 次
发布时间:2019-06-23

本文共 1592 字,大约阅读时间需要 5 分钟。

c# code:

using System; public class aidd2008 {
public static void Main(String[] argv) {
int x = 10; int y = 6; if (x > y) {
Console.WriteLine(x); } else {
Console.WriteLine(y); } Console.Read(); } }

MSIL code:

// =============== CLASS MEMBERS DECLARATION =================== .class public auto ansi beforefieldinit aidd2008 extends [mscorlib]System.Object {
.method public hidebysig static void Main(string[] argv) cil managed {
.entrypoint // 代码大小 44 (0x2c) .maxstack 2 .locals init (int32 V_0, int32 V_1, bool V_2)//定义三个变量 IL_0000: nop IL_0001: ldc.i4.s 10//把整型值10载入堆栈 IL_0003: stloc.0//把刚才载入堆栈的10赋值给第一个local变量,int x=10 IL_0004: ldc.i4.6//把整型值6载入堆栈 IL_0005: stloc.1//把刚才载入堆栈的6赋值给第二个local变量,int y=6 IL_0006: ldloc.0 IL_0007: ldloc.1//这两句,把x,y两个local变量载入堆栈 IL_0008: cgt//比较x,y的大小,结果会保存在堆栈最上方(结果以0或1表示true ,false) IL_000a: ldc.i4.0//把0载入堆栈 IL_000b: ceq//比较0和cgt的运算结果是否相等,结果会保存在堆栈最上方(结果以0或1表示true ,false) IL_000d: stloc.2//ceq的运算结果保存入bool变量中 IL_000e: ldloc.2//再把ceq运算结果载入 IL_000f: brtrue.s IL_001c//判断跳转,若跳转显式Y,不跳转显式X IL_0011: nop IL_0012: ldloc.0 IL_0013: call void [mscorlib]System.Console::WriteLine(int32) IL_0018: nop IL_0019: nop IL_001a: br.s IL_0025 IL_001c: nop IL_001d: ldloc.1 IL_001e: call void [mscorlib]System.Console::WriteLine(int32) IL_0023: nop IL_0024: nop IL_0025: call int32 [mscorlib]System.Console::Read() IL_002a: pop IL_002b: ret } // end of method aidd2008::Main

转载地址:http://yglko.baihongyu.com/

你可能感兴趣的文章
springMVC多数据源使用 跨库跨连接
查看>>
Git服务端和客户端安装笔记
查看>>
Spring Security(14)——权限鉴定基础
查看>>
IntelliJ IDEA快捷键
查看>>
【iOS-cocos2d-X 游戏开发之十三】cocos2dx通过Jni调用Android的Java层代码(下)
查看>>
MongoDB的基础使用
查看>>
进程间通信——命名管道
查看>>
LINUX 重定向的知识
查看>>
ssh登陆不需要密码
查看>>
ARP
查看>>
java mkdir()和mkdirs()区别
查看>>
桌面支持--excel自动换行
查看>>
虚拟化--003 vcac licence -成功案例
查看>>
windows server 2003各版本及2008各版本的最大识别内存大小
查看>>
OSChina 周六乱弹 ——揭秘后羿怎么死的
查看>>
centos查找未挂载磁盘格式化并挂载
查看>>
IT人员的职业生涯规划
查看>>
sorry,you must have a tty to run sudo
查看>>
ios开发中使用正则表达式识别处理字符串中的URL
查看>>
项目中的积累,及常见小问题
查看>>