在下面的代碼,拳擊發生(在通用<類型> .PRINT):奇怪的通用行爲
using System;
namespace Test
{
static class Program
{
static void Main()
{
Generic<string> generic = new Generic<string>("test");
generic.Print();
}
}
class Generic<Type>
{
Type value;
public Generic(Type value)
{
this.value = value;
}
public void Print()
{
Console.WriteLine(value);
}
}
}
ILSpy輸出:
.method public hidebysig
instance void Print() cil managed
{
// Method begins at RVA 0x207d
// Code size 17 (0x11)
.maxstack 8
IL_0000: ldarg.0
IL_0001: ldfld !0 class Test.Generic`1<!Type>::'value'
IL_0006: box !Type
IL_000b: call void [mscorlib]System.Console::WriteLine(object)
IL_0010: ret
} // end of method Generic`1::Print
這是拳擊和調用Console.WriteLine(對象) 。我認爲它只會調用Console.WriteLine(string)。這裏發生了什麼?
看起來像使用一些代碼重用。 –
Fyi,調用泛型參數'Type'是不好的做法,因爲它可能與'System.Type'衝突。 –