ContainerRandomAccessIterator<TValue>.GreaterThan 运算符
定义
确定迭代器的位置是否大于另一个迭代器的位置。Determines whether the position of an iterator is greater than the position of another iterator.
重载
| GreaterThan(ContainerRandomAccessIterator<TValue>) |
确定左侧迭代器的位置是否大于给定的右侧迭代器的位置。Determines whether the position of the left-side iterator is greater than the position of the given right-side iterator. |
| GreaterThan(IRandomAccessIterator<TValue>, ContainerRandomAccessIterator<TValue>) |
确定给定的左侧迭代器的位置是否大于给定的右侧迭代器的位置。Determines whether the position of the given left-side iterator is greater than the position of the given right-side iterator. |
GreaterThan(ContainerRandomAccessIterator<TValue>)
确定左侧迭代器的位置是否大于给定的右侧迭代器的位置。Determines whether the position of the left-side iterator is greater than the position of the given right-side iterator.
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
参数
要与左侧迭代器进行比较的迭代器。The iterator to compare with the left-side iterator.
返回
如果左侧迭代器大于给定的右侧迭代器,则为 true;否则为 false。true if the left-side iterator is greater than the given right-side iterator; otherwise, false.
适用于
GreaterThan(IRandomAccessIterator<TValue>, ContainerRandomAccessIterator<TValue>)
确定给定的左侧迭代器的位置是否大于给定的右侧迭代器的位置。Determines whether the position of the given left-side iterator is greater than the position of the given right-side iterator.
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
参数
要与右侧迭代器进行比较的迭代器。The iterator to compare with the right-side iterator.
要与左侧迭代器进行比较的迭代器。The iterator to compare with the left-side iterator.
返回
如果给定的左侧迭代器大于给定的右侧迭代器,则为 true;否则为 false。true if the given left-side iterator is greater than the given right-side iterator; otherwise, false.