IComparisonOperators<TSelf,TOther,TResult> 接口
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
定义用于比较两个值以确定相对顺序的机制。
generic <typename TSelf, typename TOther, typename TResult>
where TSelf : IComparisonOperators<TSelf, TOther, TResult>public interface class IComparisonOperators : System::Numerics::IEqualityOperators<TSelf, TOther, TResult>
public interface IComparisonOperators<TSelf,TOther,TResult> : System.Numerics.IEqualityOperators<TSelf,TOther,TResult> where TSelf : IComparisonOperators<TSelf,TOther,TResult>
type IComparisonOperators<'Self, 'Other, 'Result (requires 'Self :> IComparisonOperators<'Self, 'Other, 'Result>)> = interface
interface IEqualityOperators<'Self, 'Other, 'Result (requires 'Self :> IComparisonOperators<'Self, 'Other, 'Result>)>
Public Interface IComparisonOperators(Of TSelf, TOther, TResult)
Implements IEqualityOperators(Of TSelf, TOther, TResult)
类型参数
- TSelf
实现此接口的类型。
- TOther
将与 进行比较 TSelf
的类型。
- TResult
作为比较结果返回的类型。
- 派生
- 实现
运算符
GreaterThan(TSelf, TOther) |
比较两个值以确定哪个值更大。 |
GreaterThanOrEqual(TSelf, TOther) |
比较两个值以确定哪个值大于或等于。 |
LessThan(TSelf, TOther) |
比较两个值以确定哪个值更少。 |
LessThanOrEqual(TSelf, TOther) |
比较两个值以确定哪个值小于或等于。 |