本文介绍了检测泛型参数的MaxValue的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想编写泛型类,它应该使用byte
和ushort
类型。我应该对这个类使用什么约束?如何检测此类中的MaxValue
属性?class MyClass<T> // where T: ???
{
void Foo()
{
int maxValue = T.MaxValue; // how can I do this?
}
}
如果类是用不包含MaxValue属性的意外类型创建的,我不在乎-例如,我可以在运行时引发异常。
推荐答案
一种方法是利用新的dynamic
关键字:
void Main()
{
Test(10);
Test(10.234);
Test((Byte)42);
Test(true);
}
public void Test<T>(T value)
where T : struct
{
T maxValue = MaxValue((dynamic)value);
maxValue.Dump();
}
public int MaxValue(int dummy)
{
return int.MaxValue;
}
public double MaxValue(double dummy)
{
return double.MaxValue;
}
public byte MaxValue(byte dummy)
{
return byte.MaxValue;
}
public object MaxValue(object dummy)
{
// This method will catch all types that has no specific method
throw new NotSupportedException(dummy.GetType().Name);
}
或者,您可以使用反射获取MaxValue字段:
void Main()
{
Test(10);
Test(10.234);
Test((Byte)42);
Test(true);
}
public void Test<T>(T value)
where T : struct
{
FieldInfo maxValueField = typeof(T).GetField("MaxValue", BindingFlags.Public
| BindingFlags.Static);
if (maxValueField == null)
throw new NotSupportedException(typeof(T).Name);
T maxValue = (T)maxValueField.GetValue(null);
maxValue.Dump();
}
您可以通过LINQPad测试这两个程序。
这篇关于检测泛型参数的MaxValue的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!