Implementing Iterators in Custom Types

How can I implement iterators for my custom types in C++?

To implement iterators for custom types in C++, you need to define begin() and end() methods in your class.

These methods should return iterators that can traverse the elements of your collection. Here's an example using a class Party that contains a collection of Player objects managed by an std::vector.

#include <vector>
#include <string>
#include <iostream>

class Player {
public:
  Player(std::string Name) : mName(Name) {}
  std::string GetName() const { return mName; }
private:
  std::string mName;
};

class Party {
public:
  void AddMember(const std::string& NewMember) {
    PartyMembers.emplace_back(NewMember);
  }

  auto begin() {
    return PartyMembers.begin();
  }
  auto end() {
    return PartyMembers.end();
  }

private:
  std::vector<Player> PartyMembers;
};

int main() {
  Party MyParty;
  MyParty.AddMember("Legolas");
  MyParty.AddMember("Gimli");
  MyParty.AddMember("Frodo");

  for (const auto& Player : MyParty) {
    std::cout << Player.GetName() << '\n';
  }
}
Legolas
Gimli
Frodo

Implementing Ranges for Custom Types

Learn to implement iterators in custom types, and make them compatible with range-based techniques.

Questions & Answers

Answers are generated by AI models and may not have been reviewed. Be mindful when running any code on your device.

What are iterator types in C++?
What are iterator types in C++ and how do I use them?
How do I assert a type is a range in C++?
How can I ensure my custom type is a valid range in C++?
How to use range-based for loops in C++?
How can I use range-based for loops with my custom types in C++?
How to create a custom collection with iterators in C++?
How do I create a custom collection with iterators in C++?
How to use concepts with custom ranges in C++?
How can I use concepts to ensure my custom type is a valid range in C++?
Or Ask your Own Question
Get an immediate answer to your specific question using our AI assistant