ContainerRandomAccessIterator<TValue>.GreaterThan 运算符

定义

确定迭代器的位置是否大于另一个迭代器的位置。

重载

GreaterThan(ContainerRandomAccessIterator<TValue>)

确定左侧迭代器的位置是否大于给定的右侧迭代器的位置。

GreaterThan(IRandomAccessIterator<TValue>, ContainerRandomAccessIterator<TValue>)

确定给定的左侧迭代器的位置是否大于给定的右侧迭代器的位置。

GreaterThan(ContainerRandomAccessIterator<TValue>)

确定左侧迭代器的位置是否大于给定的右侧迭代器的位置。

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

参数

_Right
ContainerRandomAccessIterator<TValue>

要与左侧迭代器进行比较的迭代器。

返回

如果左侧迭代器大于给定的右侧迭代器,则为 true;否则为 false

适用于

GreaterThan(IRandomAccessIterator<TValue>, ContainerRandomAccessIterator<TValue>)

确定给定的左侧迭代器的位置是否大于给定的右侧迭代器的位置。

public:
 static bool operator >(Microsoft::VisualC::StlClr::Generic::IRandomAccessIterator<TValue> ^ _Left, Microsoft::VisualC::StlClr::Generic::ContainerRandomAccessIterator<TValue> ^ _Right);
public static bool operator > (Microsoft.VisualC.StlClr.Generic.IRandomAccessIterator<TValue> _Left, Microsoft.VisualC.StlClr.Generic.ContainerRandomAccessIterator<TValue> _Right);
static member ( > ) : Microsoft.VisualC.StlClr.Generic.IRandomAccessIterator<'Value> * Microsoft.VisualC.StlClr.Generic.ContainerRandomAccessIterator<'Value> -> bool
Public Shared Operator > (_Left As IRandomAccessIterator(Of TValue), _Right As ContainerRandomAccessIterator(Of TValue)) As Boolean

参数

_Left
IRandomAccessIterator<TValue>

要与右侧迭代器进行比较的迭代器。

_Right
ContainerRandomAccessIterator<TValue>

要与左侧迭代器进行比较的迭代器。

返回

如果给定的左侧迭代器大于给定的右侧迭代器,则为 true;否则为 false

适用于