[No0000B7]If else 与 三元表达式? : 效率对比

先看 if else 一段代码

using System;

class Program
{
    private static void Main()
    {
        int i = 0;

        if (i == 0) i = -1;
        else i = -2;

        Console.WriteLine(i);
    }
}

输出 -1

用IL DASM ("C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.6.1 Tools\ildasm.exe"vs2015 up3,项目框架.NET Framework 4.5.2)打开

.method private hidebysig static void Main() cil managed
{
    .entrypoint
    // 代码大小 26 (0x1a)
    .maxstack 2
    .locals init ([0] int32 i,
    [1] bool V_1)
    IL_0000: nop
    IL_0001: ldc.i4.0
    IL_0002: stloc.0
    IL_0003: ldloc.0
    IL_0004: ldc.i4.0
    IL_0005: ceq
    IL_0007: stloc.1
    IL_0008: ldloc.1
    IL_0009: brfalse.s IL_000f
    IL_000b: ldc.i4.m1
    IL_000c: stloc.0
    IL_000d: br.s IL_0012
    IL_000f: ldc.i4.s -2
    IL_0011: stloc.0
    IL_0012: ldloc.0
    IL_0013: call void [mscorlib]System.Console::WriteLine(int32)
    IL_0018: nop
    IL_0019: ret
} // end of method Program::Main

在看三元表达式? :一段代码

using System;
class Program
{
    private static void Main()
    {
        int i = 0;

        i = i == 0 ? -1 : -2;

        Console.WriteLine(i);
    }
}

输出 -1

.method private hidebysig static void Main() cil managed
{
    .entrypoint
    // 代码大小 20 (0x14)
    .maxstack 1
    .locals init ([0] int32 i)
    IL_0000: nop
    IL_0001: ldc.i4.0
    IL_0002: stloc.0
    IL_0003: ldloc.0
    IL_0004: brfalse.s IL_000a
    IL_0006: ldc.i4.s -2
    IL_0008: br.s IL_000b
    IL_000a: ldc.i4.m1
    IL_000b: stloc.0
    IL_000c: ldloc.0
    IL_000d: call void [mscorlib]System.Console::WriteLine(int32)
    IL_0012: nop
    IL_0013: ret
} // end of method Program::Main

明显,执行效率不一样。三元表达式? :执行效率更高。

using System;
using System.Diagnostics;

class Program
{
    private static void Main()
    {
        int i = 0;

        Stopwatch stopwatch = new Stopwatch();
        stopwatch.Start();
        for (int j = 0; j < 100000000; j++)
        {
            if (i == 0) i = -1;
            else i = -2;
        }
        stopwatch.Stop();

        Console.WriteLine(stopwatch.ElapsedMilliseconds);

        stopwatch.Reset();

        stopwatch.Start();
        for (int j = 0; j < 100000000; j++)
        {
            i = i == 0 ? -1 : -2;
        }
        stopwatch.Stop();

        Console.WriteLine(stopwatch.ElapsedMilliseconds);
    }
}

 

 

转载于:https://www.cnblogs.com/Chary/p/No0000B7.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值