本质上,我正在尝试为矩阵编写一个通用的蛮力 getMax() 方法。这是我所拥有的:
private T getMax <T>(T[,] matrix, uint rows, uint cols) where T : IComparable<T>
{
T max_val = matrix[0, 0];
for (int row = 0; row < rows; ++row)
{
for (int col = 0; col < cols; ++col)
{
if (matrix[row, col] > max_val)
{
max_val = matrix[row, col];
}
}
}
return max_val;
}
这将无法编译,并出现错误Operator '>' cannot be applied to operands of type 'T' and 'T'
。我给出了 IComparable 指令,所以我不确定这里发生了什么。为什么这不起作用?