gpt4 book ai didi

c# - 我如何比较相同泛型类型的两个值?

转载 作者:行者123 更新时间:2023-12-04 14:35:11 26 4
gpt4 key购买 nike

以下代码无法编译:

class Test<T> where T : class, IComparable
{
public bool IsGreater(T t1, T t2)
{
return t1 > t2; // Cannot apply operator '>' to operands of type 'T' and 'T'
}
}

我怎样才能让它发挥作用?我希望它适用于 T = intdoubleDateTime 等。

最佳答案

IComparable您在此处用作类型约束的接口(interface)为您提供了 CompareTo方法。所以你可以这样做:

public bool IsGreater(T t1, T t2)
{
return t1.CompareTo(t2) > 0;
}

关于c# - 我如何比较相同泛型类型的两个值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69899514/

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