我正在编写一些类似于 QT 中常用集合的类:
class MyCollection
{
MyElement & at(int) const;
MyElement & operator[](int) const;
int count() const;
};
现在我想用 QT 的 foreach 枚举我的新类中的所有元素。我应该怎么做才能实现这一目标?
我正在编写一些类似于 QT 中常用集合的类:
class MyCollection
{
MyElement & at(int) const;
MyElement & operator[](int) const;
int count() const;
};
现在我想用 QT 的 foreach 枚举我的新类中的所有元素。我应该怎么做才能实现这一目标?