作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
下面是一些快速代码来说明我的问题。有什么方法可以避免这种明显不必要的装箱/拆箱?
public class TestClass<T>
{
public T TestMethod()
{
if (typeof(T) == typeof(bool))
{
return true; // doesn't work
return (T)(object)true; // works, but any way to avoid this?
}
return default(T);
}
}
最佳答案
这是处理您在这里所做的事情的唯一方法(返回特定封闭泛型类型的非默认值)。
关于c# - 避免在通用类中装箱和拆箱,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13297944/
我是一名优秀的程序员,十分优秀!