2

我怎样才能使这样的事情与元素和属性的基于范围的循环一起工作?

#include <list>
#include "XMLAttribute.h"

namespace XML
{
    class Element
    {
        private:
            typedef std::list<Attribute> attribute_container;
            typedef std::list<Element> element_container;

        public:
            XMLElement();

            bool has_attributes() const;
            bool has_elements() const;
            bool has_data() const;

            const std::string &name() const;
            const std::string &data() const;

        private:
            std::string _name;
            std::string _data;

            attribute_container _attributes;
            element_container _elements;
    };
}

我希望能够使用类似的东西:

for (XML::Element &el : element) { .. }
for (XML::Attribute &at : element) { .. }

并阻止类似for (auto &some_name : element) { .. } //XML::Element or XML::Attribute?.

像这样实现它是个好主意还是应该改变我的设计?

4

1 回答 1

5

正确的答案是为 Element 节点提供返回子属性和元素范围的函数。因此,您可以这样做:

for(auto &element : element.child_elements()) {...}
for(auto &attribute : element.attributes()) {...}

您的child_elements函数将返回某种存储两个迭代器的类型,例如boost::iterator_rangeattributes同样会返回属性元素的范围。

于 2012-07-09T18:07:22.070 回答