ConstContainerRandomAccessIterator<TValue>.distance Método

Definição

Determina a distância entre o elemento que aponta para o qual o iterador atual está apontando e o elemento para o qual o iterador determinado está apontando.Determines the distance between the element that the current iterator is pointing to and the element that the given iterator is pointing to.

Sobrecargas

distance(ConstContainerRandomAccessIterator<TValue>)

Determina a distância entre o elemento que aponta para o qual o iterador atual está apontando e o elemento para o qual o iterador determinado está apontando.Determines the distance between the element that the current iterator is pointing to and the element that the given iterator is pointing to.

distance(IRandomAccessIterator<TValue>)

Determina a distância entre o elemento que aponta para o qual o iterador atual está apontando e o elemento para o qual o iterador determinado está apontando.Determines the distance between the element that the current iterator is pointing to and the element that the given iterator is pointing to.

distance(ConstContainerRandomAccessIterator<TValue>)

Determina a distância entre o elemento que aponta para o qual o iterador atual está apontando e o elemento para o qual o iterador determinado está apontando.Determines the distance between the element that the current iterator is pointing to and the element that the given iterator is pointing to.

public:
 int distance(Microsoft::VisualC::StlClr::Generic::ConstContainerRandomAccessIterator<TValue> ^ _Right);
public int distance (Microsoft.VisualC.StlClr.Generic.ConstContainerRandomAccessIterator<TValue> _Right);
member this.distance : Microsoft.VisualC.StlClr.Generic.ConstContainerRandomAccessIterator<'Value> -> int
Public Function distance (_Right As ConstContainerRandomAccessIterator(Of TValue)) As Integer

Parâmetros

_Right
ConstContainerRandomAccessIterator<TValue>

Um iterador válido que aponta para o mesmo contêiner que o iterador atual.A valid iterator that points to the same container as the current iterator.

Retornos

Int32

A distância, em número de elementos, entre o elemento para o qual o iterador atual está apontando e o elemento para o qual o _Right está apontando.The distance, in number of elements, between the element that the current iterator is pointing to and the element that _Right is pointing to. Esse número será negativo se _Right apontar para um elemento que está antes do elemento para o qual o iterador atual aponta.This number is negative if _Right points to an element that is before the element that the current iterator points to.

Aplica-se a

distance(IRandomAccessIterator<TValue>)

Determina a distância entre o elemento que aponta para o qual o iterador atual está apontando e o elemento para o qual o iterador determinado está apontando.Determines the distance between the element that the current iterator is pointing to and the element that the given iterator is pointing to.

public:
 virtual int distance(Microsoft::VisualC::StlClr::Generic::IRandomAccessIterator<TValue> ^ _Right);
public virtual int distance (Microsoft.VisualC.StlClr.Generic.IRandomAccessIterator<TValue> _Right);
abstract member distance : Microsoft.VisualC.StlClr.Generic.IRandomAccessIterator<'Value> -> int
override this.distance : Microsoft.VisualC.StlClr.Generic.IRandomAccessIterator<'Value> -> int
Public Overridable Function distance (_Right As IRandomAccessIterator(Of TValue)) As Integer

Parâmetros

_Right
IRandomAccessIterator<TValue>

Um iterador válido que aponta para o mesmo contêiner que o iterador atual.A valid iterator that points to the same container as the current iterator.

Retornos

Int32

A distância, em número de elementos, entre o elemento para o qual o iterador atual está apontando e o elemento para o qual o _Right está apontando.The distance, in number of elements, between the element that the current iterator is pointing to and the element that _Right is pointing to. Esse número será negativo se _Right apontar para um elemento que está antes do elemento para o qual o iterador atual aponta.This number is negative if _Right points to an element that is before the element that the current iterator points to.

Implementações

Aplica-se a