如果我想要一个只接受重载运算符的类型的泛型方法,例如减法运算符,我会怎么做。我尝试使用接口作为约束,但接口不能有运算符重载。
实现这一目标的最佳方法是什么?
如果我想要一个只接受重载运算符的类型的泛型方法,例如减法运算符,我会怎么做。我尝试使用接口作为约束,但接口不能有运算符重载。
实现这一目标的最佳方法是什么?
没有立即的答案;运算符是静态的,不能在约束中表示 - 现有的原语不实现任何特定的接口(与可用于模拟大于/小于的 IComparable[<T>] 形成对比)。
然而; 如果你只是想让它工作,那么在 .NET 3.5 中有一些选项......
我在这里整理了一个库,允许使用泛型高效且简单地访问运算符 - 例如:
T result = Operator.Add(first, second); // implicit <T>; here
它可以作为MiscUtil的一部分下载
此外,在 C# 4.0 中,这可以通过以下方式实现dynamic
:
static T Add<T>(T x, T y) {
dynamic dx = x, dy = y;
return dx + dy;
}
我也(在某一时刻)有一个 .NET 2.0 版本,但测试较少。另一种选择是创建一个界面,例如
interface ICalc<T>
{
T Add(T,T)()
T Subtract(T,T)()
}
等等,但是您需要ICalc<T>;
通过所有方法,这会变得混乱。
我发现 IL 实际上可以很好地处理这个问题。前任。
ldarg.0
ldarg.1
add
ret
在泛型方法中编译,只要指定了原始类型,代码就可以正常运行。可以扩展它以在非原始类型上调用运算符函数。
见这里。
有一段代码是从我经常使用的内部人员那里偷来的。IL
它使用基本的算术运算符查找或构建。这一切都在一个Operation<T>
泛型类中完成,您所要做的就是将所需的操作分配给一个委托。喜欢add = Operation<double>.Add
。
它是这样使用的:
public struct MyPoint
{
public readonly double x, y;
public MyPoint(double x, double y) { this.x=x; this.y=y; }
// User types must have defined operators
public static MyPoint operator+(MyPoint a, MyPoint b)
{
return new MyPoint(a.x+b.x, a.y+b.y);
}
}
class Program
{
// Sample generic method using Operation<T>
public static T DoubleIt<T>(T a)
{
Func<T, T, T> add=Operation<T>.Add;
return add(a, a);
}
// Example of using generic math
static void Main(string[] args)
{
var x=DoubleIt(1); //add integers, x=2
var y=DoubleIt(Math.PI); //add doubles, y=6.2831853071795862
MyPoint P=new MyPoint(x, y);
var Q=DoubleIt(P); //add user types, Q=(4.0,12.566370614359172)
var s=DoubleIt("ABC"); //concatenate strings, s="ABCABC"
}
}
Operation<T>
源代码由粘贴箱提供:http: //pastebin.com/nuqdeY8z
归属如下:
/* Copyright (C) 2007 The Trustees of Indiana University
*
* Use, modification and distribution is subject to the Boost Software
* License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
* http://www.boost.org/LICENSE_1_0.txt)
*
* Authors: Douglas Gregor
* Andrew Lumsdaine
*
* Url: http://www.osl.iu.edu/research/mpi.net/svn/
*
* This file provides the "Operations" class, which contains common
* reduction operations such as addition and multiplication for any
* type.
*
* This code was heavily influenced by Keith Farmer's
* Operator Overloading with Generics
* at http://www.codeproject.com/csharp/genericoperators.asp
*
* All MPI related code removed by ja72.
*/