iterator_traits – struktura
Pomocná struktura šablony sloužící k určení všech definic kritického typu, které má mít iterátor.
Syntaxe
struct iterator_traits {
typedef typename Iterator::iterator_category iterator_category;
typedef typename Iterator::value_type value_type;
typedef typename Iterator::difference_type difference_type;
typedef difference_type distance_type;
typedef typename Iterator::pointer pointer;
typedef typename Iterator::reference reference;
};
Poznámky
Struktura šablony definuje typy členů.
iterator_category
: synonymum proIterator::iterator_category
.value_type
: synonymum proIterator::value_type
.difference_type
: synonymum proIterator::difference_type
.distance_type
: synonymum proIterator::difference_type
.pointer
: synonymum proIterator::pointer
.reference
: synonymum proIterator::reference
.
Částečné specializace určují kritické typy spojené s ukazatelem objektu typu typ * nebo const Type . *
V této implementaci můžete také použít několik funkcí šablon, které nevyužívá částečnou specializaci:
template <class Category, class Type, class Diff>
C _Iter_cat(const iterator<Category, Ty, Diff>&);
template <class Ty>
random_access_iterator_tag _Iter_cat(const Ty *);
template <class Category, class Ty, class Diff>
Ty *val_type(const iterator<Category, Ty, Diff>&);
template <class Ty>
Ty *val_type(const Ty *);
template <class Category, class Ty, class Diff>
Diff *_Dist_type(const iterator<Category, Ty, Diff>&);
template <class Ty>
ptrdiff_t *_Dist_type(const Ty *);
které určují několik stejných typů nepřímo. Tyto funkce použijete jako argumenty pro volání funkce. Jejich jediným účelem je poskytnout užitečnému parametru šablony třídy do volané funkce.
Příklad
// iterator_traits.cpp
// compile with: /EHsc
#include <iostream>
#include <iterator>
#include <vector>
#include <list>
using namespace std;
template< class it >
void
function( it i1, it i2 )
{
iterator_traits<it>::iterator_category cat;
cout << typeid( cat ).name( ) << endl;
while ( i1 != i2 )
{
iterator_traits<it>::value_type x;
x = *i1;
cout << x << " ";
i1++;
};
cout << endl;
};
int main( )
{
vector<char> vc( 10,'a' );
list<int> li( 10 );
function( vc.begin( ), vc.end( ) );
function( li.begin( ), li.end( ) );
}
/* Output:
struct std::random_access_iterator_tag
a a a a a a a a a a
struct std::bidirectional_iterator_tag
0 0 0 0 0 0 0 0 0 0
*/
Požadavky
Header:<iterator>
Obor názvů: std
Viz také
<iterátor>
Bezpečný přístup z více vláken ve standardní knihovně C++
Standardní knihovna C++ – referenční dokumentace