ReverseBidirectionalIterator<TValue>.Inequality 操作员

定义

确定两个迭代器是否不是同一对象。

重载

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>

IInputIterator<TValue> 与当前 ReverseBidirectionalIterator<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

参数

返回

true 如果两个迭代器是不同的对象,则为否则,为 false.

适用于