c# – 创建类型的默认实例

前端之家收集整理的这篇文章主要介绍了c# – 创建类型的默认实例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > Programmatic equivalent of default(Type)12个
什么是反射相当于:
default(object);  //null

当我在运行时之前没有类型时,例如

public void Method(Type type)
{
   var instance = type.CreateDefault(); //no such method exists,but I expect there is a way of doing this?
}

解决方法

对于任何引用类型,默认值为空实例.对于任何值类型,可以通过Activator.CreateInstance获取默认值.但是当你有一个名为instance的变量时,建议你想要一个实际的实例而不是一个null引用…所以你可以这样做:
public object GetDefaultValue(Type type)
{
    return type.IsValueType ? Activator.CreateInstance(type) : null;
}

……这不是很清楚它有多有用.这是类型的默认值,与默认的类型实例不同.

原文链接:https://www.f2er.com/csharp/243149.html

猜你在找的C#相关文章