共用方式為


ReverseBidirectionalIterator<TValue>.Equality 運算子

定義

判斷兩個 Iterator 是否為相同的物件。

多載

Equality(IInputIterator<TValue>)

判斷指定的 IInputIterator<TValue> 物件是否與目前的 ReverseBidirectionalIterator<TValue> 物件相同。

Equality(ReverseBidirectionalIterator<TValue>)

判斷指定的 ReverseBidirectionalIterator<TValue> 物件是否與目前的 ReverseBidirectionalIterator<TValue> 物件相同。

Equality(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.( = ) : Microsoft.VisualC.StlClr.Generic.IInputIterator<'Value> -> bool
Public Operator == (_Right As IInputIterator(Of TValue)) As Boolean

參數

傳回

如果這兩個是相同的 Iterator 物件,則為 true,否則為 false

備註

這個運算子的對等方法為 Object.Equals(Object)

適用於

Equality(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.( = ) : Microsoft.VisualC.StlClr.Generic.ReverseBidirectionalIterator<'Value> -> bool
Public Operator == (_Right As ReverseBidirectionalIterator(Of TValue)) As Boolean

參數

傳回

如果這兩個是相同的 Iterator 物件,則為 true,否則為 false

適用於