c# – .NET乘法优化

前端之家收集整理的这篇文章主要介绍了c# – .NET乘法优化前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
编译器是否将任何乘法优化为1?也就是说,考虑一下:
int a = 1;
int b = 5 * a;

表达式5 * a是否会被优化为5?如果不是,如果a被定义为:

const int a = 1;

解决方法

它将在编译时预先计算任何常量表达式,包括字符串连接.如果没有const,它将被遗弃.

你的第一个例子编译成这个IL:

.maxstack 2
.locals init ([0] int32,[1] int32)

ldc.i4.1   //load 1
stloc.0    //store in 1st local variable
ldc.i4.5   //load 5
ldloc.0    //load 1st variable
mul        // 1 * 5
stloc.1    // store in 2nd local variable

第二个例子编译为:

.maxstack 1
.locals init ( [0] int32 )

ldc.i4.5 //load 5 
stloc.0  //store in local variable
原文链接:https://www.f2er.com/csharp/97028.html

猜你在找的C#相关文章