gpt4 book ai didi

c# - 通过反射从 C# 中的类创建实例

转载 作者:太空狗 更新时间:2023-10-29 23:08:15 24 4
gpt4 key购买 nike

考虑这段代码:

class Program
{
static void Main(string[] args)
{
var instance = Activator.CreateInstance<Person>();//No parameterless constructor defined for this object.

}
}

public class Person
{
public Person(string name = "Shahrooz") { }
}

使用此代码时:Activator.CreateInstance<Person>();我收到此错误:

No parameterless constructor defined for this object.

请注意,我的构造函数具有默认参数:string name = "Shahrooz"

为什么我们不能从具有构造函数的类创建实例,尽管构造函数具有默认值参数?

最佳答案

我们不能从具有构造函数的类创建实例,因为构造函数仍然需要一个参数,即使它是默认的。不过,您可以通过调用 GetParameters() 并访问初始元素来获取默认值:

ConstructorInfo constr = typeof(Person).GetConstructor(new[] {typeof(string)});
ParameterInfo p0 = constr.GetParameters()[0];
object defaultValue = p0.DefaultValue;
Person p = (Person)constr.Invoke(new[] {defaultValue});
// ...or using Activator
Person p = (Person)Activator.CreateInstance(typeof(Person), defaultValue);

关于c# - 通过反射从 C# 中的类创建实例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18800839/

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