C#中使用new()
约束向泛型构造函数传递参数
在向列表添加元素时,尝试创建带有构造函数参数的类型T的新对象,可能会遇到编译错误,提示在创建变量实例时无法提供参数。即使类中存在构造函数参数,也会出现此错误。
要解决此问题,必须使用泛型类型的new()
约束。虽然此约束允许创建无参数的实例,但对于包含构造函数参数的情况则不足够。
替代方案是引入一个参数,以便根据参数创建对象。函数可以有效地实现此目的。
<code class="language-csharp">public static string GetAllItems<T>(..., Func<ListItem, T> del) { ... List<T> tabListItems = new List<T>(); foreach (ListItem listItem in listCollection) { tabListItems.Add(del(listItem)); } ... }</code>
此函数可以使用创建具有所需参数的新对象的lambda表达式调用:
<code class="language-csharp">GetAllItems<Foo>(..., l => new Foo(l));</code>
以上是如何使用'new()”约束将参数传递给 C# 中的泛型构造函数?的详细内容。更多信息请关注PHP中文网其他相关文章!