gpt4 book ai didi

c# - 在界面中创建通用列表属性

转载 作者:行者123 更新时间:2023-11-30 19:35:34 26 4
gpt4 key购买 nike

我需要做一个这样的界面:

public interface ISomething
{
List<T> ListA { get; set; }
List<T> ListB { get; set; }
}

然后像这样实现它:

public class Something01: ISomething
{
public List<string> ListA { get; set; }
public List<Person> ListB { get; set; }
}

或者像这样:

public class Something02: ISomething
{
public List<int> ListA { get; set; }
public List<string> ListB { get; set; }
}

但是看着other posts似乎我必须在我的接口(interface)类之上定义 T 。这迫使我在实现时为所有属性使用一种特定类型。这能以某种方式完成吗?

谢谢

最佳答案

您可以使接口(interface)通用,为每个需要不同类型的属性提供一个类型参数,例如:

public interface ISomething<TA, TB>
{
List<TA> ListA{ get; set; }
List<TB> ListB {get; set; }
}

然后像这样使用它:

public class Something01: ISomething<string, Person>
{
public List<string> ListA { get; set; }
public List<Person> ListB { get; set; }
}

关于c# - 在界面中创建通用列表属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54550679/

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