IShiftOperators<TSelf,TOther,TResult> 接口
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
定义一种机制,用于将一个值移到另一个值。
generic <typename TSelf, typename TOther, typename TResult>
where TSelf : IShiftOperators<TSelf, TOther, TResult>public interface class IShiftOperators
public interface IShiftOperators<TSelf,TOther,TResult> where TSelf : IShiftOperators<TSelf,TOther,TResult>
type IShiftOperators<'Self, 'Other, 'Result (requires 'Self :> IShiftOperators<'Self, 'Other, 'Result>)> = interface
Public Interface IShiftOperators(Of TSelf, TOther, TResult)
类型参数
- TSelf
实现此接口的类型。
- TOther
用于指定应移动 TSelf
的量的类型。
- TResult
包含移动 TSelf
结果的类型 TResult
。
- 派生
运算符
LeftShift(TSelf, TOther) |
将一个值左移一个给定的量。 |
RightShift(TSelf, TOther) |
将值向右移动给定的量。 |
UnsignedRightShift(TSelf, TOther) |
将值向右移动给定的量。 |