<legend id='PAvcO'><style id='PAvcO'><dir id='PAvcO'><q id='PAvcO'></q></dir></style></legend>

      <small id='PAvcO'></small><noframes id='PAvcO'>

        • <bdo id='PAvcO'></bdo><ul id='PAvcO'></ul>

      1. <i id='PAvcO'><tr id='PAvcO'><dt id='PAvcO'><q id='PAvcO'><span id='PAvcO'><b id='PAvcO'><form id='PAvcO'><ins id='PAvcO'></ins><ul id='PAvcO'></ul><sub id='PAvcO'></sub></form><legend id='PAvcO'></legend><bdo id='PAvcO'><pre id='PAvcO'><center id='PAvcO'></center></pre></bdo></b><th id='PAvcO'></th></span></q></dt></tr></i><div id='PAvcO'><tfoot id='PAvcO'></tfoot><dl id='PAvcO'><fieldset id='PAvcO'></fieldset></dl></div>

        <tfoot id='PAvcO'></tfoot>

        如何迭代常量向量?

        时间:2023-10-06

          1. <legend id='im6Iw'><style id='im6Iw'><dir id='im6Iw'><q id='im6Iw'></q></dir></style></legend>
            <tfoot id='im6Iw'></tfoot>
              <tbody id='im6Iw'></tbody>
          2. <i id='im6Iw'><tr id='im6Iw'><dt id='im6Iw'><q id='im6Iw'><span id='im6Iw'><b id='im6Iw'><form id='im6Iw'><ins id='im6Iw'></ins><ul id='im6Iw'></ul><sub id='im6Iw'></sub></form><legend id='im6Iw'></legend><bdo id='im6Iw'><pre id='im6Iw'><center id='im6Iw'></center></pre></bdo></b><th id='im6Iw'></th></span></q></dt></tr></i><div id='im6Iw'><tfoot id='im6Iw'></tfoot><dl id='im6Iw'><fieldset id='im6Iw'></fieldset></dl></div>

              <bdo id='im6Iw'></bdo><ul id='im6Iw'></ul>
            • <small id='im6Iw'></small><noframes id='im6Iw'>

                • 本文介绍了如何迭代常量向量?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我有一个包含字段名称的 Student 向量.

                  I have a vector of Student which has a field name.

                  我想遍历向量.

                  void print(const vector<Student>& students)
                      {
                      vector<Student>::iterator it;
                      for(it = students.begin(); it < students.end(); it++)
                          {
                              cout << it->name << endl;
                          }
                      }
                  

                  这在 C++ 中显然是非法的.

                  This is apparently illegal in C++.

                  请帮忙.

                  推荐答案

                  您有两个(C++11 中的三个)选项:const_iterators 和索引(C 中的range-for"++11)

                  You have two (three in C++11) options: const_iterators and indexes (+ "range-for" in C++11)

                  void func(const std::vector<type>& vec) {
                    std::vector<type>::const_iterator iter;
                    for (iter = vec.begin(); iter != vec.end(); ++iter)
                      // do something with *iter
                  
                    /* or
                    for (size_t index = 0; index != vec.size(); ++index)
                      // do something with vec[index]
                  
                    // as of C++11
                    for (const auto& item: vec)
                      // do something with item
                    */
                  }
                  

                  对于迭代器,您应该更喜欢使用 != 而不是 < - 后者不适用于所有迭代器,前者可以.使用前者,您甚至可以使代码更通用(这样您甚至可以在不触及循环的情况下更改容器类型)

                  You should prefer using != instead of < with iterators - the latter does not work with all iterators, the former will. With the former you can even make the code more generic (so that you could even change the container type without touching the loop)

                  template<typename Container>
                  void func(const Container& container) {
                    typename Container::const_iterator iter;
                    for (iter = container.begin(); iter != container.end(); ++iter)
                      // work with *iter
                  }
                  

                  这篇关于如何迭代常量向量?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:赋值运算符“="是原子的吗? 下一篇:静态初始化时的访问冲突

                  相关文章

                  最新文章

                    1. <small id='gUsih'></small><noframes id='gUsih'>

                      <i id='gUsih'><tr id='gUsih'><dt id='gUsih'><q id='gUsih'><span id='gUsih'><b id='gUsih'><form id='gUsih'><ins id='gUsih'></ins><ul id='gUsih'></ul><sub id='gUsih'></sub></form><legend id='gUsih'></legend><bdo id='gUsih'><pre id='gUsih'><center id='gUsih'></center></pre></bdo></b><th id='gUsih'></th></span></q></dt></tr></i><div id='gUsih'><tfoot id='gUsih'></tfoot><dl id='gUsih'><fieldset id='gUsih'></fieldset></dl></div>
                      <tfoot id='gUsih'></tfoot>
                        <bdo id='gUsih'></bdo><ul id='gUsih'></ul>
                      <legend id='gUsih'><style id='gUsih'><dir id='gUsih'><q id='gUsih'></q></dir></style></legend>