gpt4 book ai didi

c# - 如何使用泛型将参数传递给非泛型方法?

转载 作者:太空狗 更新时间:2023-10-29 21:04:48 24 4
gpt4 key购买 nike

为什么下面的代码不能编译?我如何创建一个泛型方法,它根据泛型类型是“int”、“bool”、“char”等来调用适当的“BitConverter.GetBytes”重载?更一般地说,我如何创建一个泛型方法来调用基于泛型参数类型的非泛型方法?

using System;

public class Test
{
public static void Main()
{
var f = new Foo();
f.GetBytes(10); // should call BitConverter.GetBytes(int);
f.GetBytes(true); // should call BitConverter.GetBytes(bool);
f.GetBytes('A'); // should call BitConverter.GetBytes(char);
}
}

public class Foo
{
public byte[] GetBytes <TSource> (TSource input)
{
BitConverter.GetBytes(input);
}
}

最佳答案

More generally, how can I create a generic method which calls a non-generic method based on the generic parameter's type?

一般情况下,您不能这样做,除非所讨论的方法将 System.Object 作为参数。问题是泛型并不仅限于方法调用参数允许的类型。

最接近的做法是使用运行时绑定(bind):

public byte[] GetBytes <TSource> (TSource input)
{
dynamic obj = input;
BitConverter.GetBytes(obj);
}

这会将方法绑定(bind)逻辑推送到运行时,如果没有合适的方法可以调用,则会抛出。

关于c# - 如何使用泛型将参数传递给非泛型方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23251995/

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