CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: laserlight

Search: Search took 0.28 seconds.

  1. Re: Why do I have to dereference my vector iterator? What does it mean?

    That said, because the concept of iterators in C++ are a generalisation of the concept of pointers, it is correct to say "dereference the iterator", and in fact that language is used in the C++...
  2. Re: Why do I have to dereference my vector iterator? What does it mean?

    Consider: English is a language, but not all languages are English. Likewise, a pointer is an iterator, but not all iterators are pointers.
  3. Re: Why do I have to dereference my vector iterator? What does it mean?

    Actually, this is not generally true. Rather, a pointer is a type of iterator because the concept of an iterator in C++ was generalised from the concept of a pointer. However, a given iterator type...
Results 1 to 3 of 3





Click Here to Expand Forum to Full Width

Featured