ConstReverseBidirectionalIterator<TValue>.Inequality 运算符

定义

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

重载

Inequality(ConstReverseBidirectionalIterator<TValue>)

确定给定的 ConstReverseBidirectionalIterator<TValue> 对象是否与当前的 ConstReverseBidirectionalIterator<TValue> 对象不同。

Inequality(IInputIterator<TValue>)

确定给定的 IInputIterator<TValue> 对象是否与当前的 ConstReverseBidirectionalIterator<TValue> 对象不同。

Inequality(ConstReverseBidirectionalIterator<TValue>)

确定给定的 ConstReverseBidirectionalIterator<TValue> 对象是否与当前的 ConstReverseBidirectionalIterator<TValue> 对象不同。

public:
 bool operator !=(Microsoft::VisualC::StlClr::Generic::ConstReverseBidirectionalIterator<TValue> ^ _Right);
public bool operator != (Microsoft.VisualC.StlClr.Generic.ConstReverseBidirectionalIterator<TValue> _Right);
member this.op_Inequality : Microsoft.VisualC.StlClr.Generic.ConstReverseBidirectionalIterator<'Value> -> bool
Public Operator != (_Right As ConstReverseBidirectionalIterator(Of TValue)) As Boolean

参数

返回

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

适用于

Inequality(IInputIterator<TValue>)

确定给定的 IInputIterator<TValue> 对象是否与当前的 ConstReverseBidirectionalIterator<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

参数

返回

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

适用于