gpt4 book ai didi

c# - 如何在 C# 中使用泛型参数和返回值将方法实现到接口(interface)中

转载 作者:行者123 更新时间:2023-11-30 20:30:27 24 4
gpt4 key购买 nike

我想在 C# 中实现一个具有通用输入参数和返回值的接口(interface)。目前我已经定义了一个接口(interface):

interface IResponseFormatter
{
T formatResponseOptimizated<T>(T[] tagsValues);
}

之后我尝试实现一个具体的类:

public class FormatResponseInterpolatedData : IResponseFormatter

{
ILog log = LogManager.GetLogger(typeof(HistorianPersistenceImpl));



public Dictionary<string, List<object[]>> formatResponseOptimizated <Dictionary<string, List<object[]>>> (IHU_RETRIEVED_DATA_VALUES[] tagsValues)
{
log.Info("ENTER [formatResponseOptimizated] tagValues: " + tagsValues);
Dictionary<string, List<object[]>> result = new Dictionary<string, List<object[]>>();

// built data logic

return result;
}
}

我想了解我的错误之处以及我如何才能做出这种实现类型。

最佳答案

您正在非泛型接口(interface)中定义泛型方法。

TformatResponseOptimizated 类型参数移动到 IResponseFormatter 类型参数,并在实现类中提供规范:

interface IResponseFormatter<T> {
// Follow C# naming conventions: method names start in an upper case letter
T FormatResponseOptimizated(T[] tagsValues);
}
public class FormatResponseInterpolatedData
: IResponseFormatter<Dictionary<string,List<object[]>>> {
public Dictionary<string,List<object[]>> FormatResponseOptimizated(Dictionary<string,List<object[]>>[] tagsValues) {
...
}
}

请注意,对于单个类型参数 TFormatResponseOptimizated 的返回类型必须与其参数 T[]< 数组元素的类型相匹配。如果两者不同,请将您的接口(interface)参数化为两种类型,例如,TArg 用于参数,TRet 用于返回。

关于c# - 如何在 C# 中使用泛型参数和返回值将方法实现到接口(interface)中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44718441/

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