ReverseBidirectionalIterator<TValue>.Inequality 操作员
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
确定两个迭代器是否为不同的对象。
重载
Inequality(IInputIterator<TValue>)
确定给定的 IInputIterator<TValue> 对象是否与当前的 ReverseBidirectionalIterator<TValue> 对象不同。
public:
bool operator !=(Microsoft::VisualC::StlClr::Generic::IInputIterator<TValue> ^ _Right);
public bool operator != (Microsoft.VisualC.StlClr.Generic.IInputIterator<TValue> _Right);
member this.op_Inequality : Microsoft.VisualC.StlClr.Generic.IInputIterator<'Value> -> bool
Public Operator != (_Right As IInputIterator(Of TValue)) As Boolean
参数
- _Right
- IInputIterator<TValue>
要与当前 ReverseBidirectionalIterator<TValue> 对象进行比较的 IInputIterator<TValue> 对象。
返回
如果两个迭代器是不同的对象,则为 true
;否则为 false
。
适用于
Inequality(ReverseBidirectionalIterator<TValue>)
确定给定的 ReverseBidirectionalIterator<TValue> 对象是否与当前的 ReverseBidirectionalIterator<TValue> 对象不同。
public:
bool operator !=(Microsoft::VisualC::StlClr::Generic::ReverseBidirectionalIterator<TValue> ^ _Right);
public bool operator != (Microsoft.VisualC.StlClr.Generic.ReverseBidirectionalIterator<TValue> _Right);
member this.op_Inequality : Microsoft.VisualC.StlClr.Generic.ReverseBidirectionalIterator<'Value> -> bool
Public Operator != (_Right As ReverseBidirectionalIterator(Of TValue)) As Boolean
参数
要与当前 ReverseBidirectionalIterator<TValue> 对象进行比较的 ReverseBidirectionalIterator<TValue> 对象。
返回
如果两个迭代器是不同的对象,则为 true
;否则为 false
。