gpt4 book ai didi

c# - 使用动态关键字转换泛型类型是否会导致装箱?

转载 作者:行者123 更新时间:2023-12-02 15:03:17 25 4
gpt4 key购买 nike

以下代码是否会导致对传递给 GenericMethod 的调用中的整数进行装箱?

void GenericMethod<T>(T value)
{
int test = (dynamic)value;
}

void Main()
{
GenericMethod(100);
}

最佳答案

根据 C# 规范§4.7 动态类型:

dynamic is considered identical to object except in the following respects:

  • Operations on expressions of type dynamic can be dynamically bound (§7.2.2).

  • Type inference (§7.5.2) will prefer dynamic over object if both are candidates.

因此,转换为动态会导致装箱,其方式与转换为对象相同。

关于c# - 使用动态关键字转换泛型类型是否会导致装箱?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38703490/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com