我正在调查此 C# 代码的执行情况:
public static void Test<T>(object o) where T : class
{
T t = o as T;
}
等效的 IL 代码是:
.method public static void Test<class T>(object A_0) cil managed
{
// Code size 13 (0xd)
.maxstack 1
.locals init (!!T V_0)
IL_0000: ldarg.0
IL_0001: isinst !!T
IL_0006: unbox.any !!T
IL_000b: stloc.0
IL_000c: ret
} // end of method DemoType::Test
基于这个答案(不必要的 unbox_any),任何人都可以向我解释 Jitter 在这里做什么的确切逻辑吗?在这种特定情况下,Jitter 究竟是如何决定忽略“unbox_any”指令的(理论上,根据msdn,当 isinst 指令产生 null 时应该抛出 NullReferenceException ,但这在实践中不会发生!)
更新
根据 usr 的回答和 Hans 的评论,如果obj是引用类型,castclass
将被调用,因此,没有 NRE。
但是下面的案例呢?
static void Test<T>(object o) where T : new()
{
var nullable = o as int?;
if (nullable != null)
//do something
}
Test<int?>(null);
以及等效的 IL 代码(部分):
IL_0001: ldarg.0
IL_0002: isinst valuetype [mscorlib]System.Nullable`1<int32>
IL_0007: unbox.any valuetype [mscorlib]System.Nullable`1<int32>
IL_000c: stloc.0
IL_000d: ldloca.s nullable
IL_000f: call instance bool valuetype [mscorlib]System.Nullable`1<int32>::get_HasValue()
IL_0014: stloc.1
IL_0015: ldloc.1
IL_0016: brfalse.s IL_0024
在这种情况下,它的值类型为什么不抛出 NRE?