• <small id='xCyyb'></small><noframes id='xCyyb'>

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

      1. <legend id='xCyyb'><style id='xCyyb'><dir id='xCyyb'><q id='xCyyb'></q></dir></style></legend>
        <tfoot id='xCyyb'></tfoot>

      2. 如何将 BOOST_FOREACH 与 boost::ptr_map 一起使用?

        时间:2023-07-19
        <tfoot id='MZMle'></tfoot>

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

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

            <bdo id='MZMle'></bdo><ul id='MZMle'></ul>
                • 本文介绍了如何将 BOOST_FOREACH 与 boost::ptr_map 一起使用?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  如何通过 boost::ptr_map 有效地使用 BOOST_FOREACH(字符数/可读性)?

                  How can I use BOOST_FOREACH efficiently (number-of-character/readability-wise) with a boost::ptr_map?

                  Kristo 在他的回答中证明这是可能的将 BOOST_FOREACH 与 ptr_map 一起使用,但与使用迭代器迭代 ptr_map 相比,它并没有真正为我节省任何输入(或使我的代码真正更具可读性):

                  Kristo demonstrated in his answer that it is possible to use BOOST_FOREACH with a ptr_map, but it does not really save me any typing (or makes my code really more readable) than iterating over the ptr_map with an iterator:

                  typedef boost::ptr_container_detail::ref_pair<int, int* const> IntPair;
                  BOOST_FOREACH(IntPair p, mymap) {
                      int i = p.first;
                  }
                  
                  // vs.
                  
                  boost::ptr_map<int, T>::iterator it;
                  for (it = mymap.begin(); it != mymap.end(); ++it) {
                      // doSomething()
                  }
                  

                  以下代码符合我的愿望.它遵循有关如何将 BOOST_FOREACH 与 std::map 一起使用的标准方法.不幸的是,这不能编译:

                  The following code is somewhere along the lines what I wish for. It follows the standard way on how to use BOOST_FOREACH with a std::map. Unfortunately this does not compile:

                  boost::ptr_map<int, T> mymap;
                  // insert something into mymap
                  // ...
                  
                  typedef pair<int, T> IntTpair;
                  BOOST_FOREACH (IntTpair &p, mymap) {
                      int i = p.first;
                  }
                  

                  推荐答案

                  作为 STL 风格的容器,指针容器有一个 value_type 类型定义,你可以使用:

                  As STL style containers, the pointer containers have a value_type typedef that you can use:

                  #include <boost/ptr_container/ptr_map.hpp>
                  #include <boost/foreach.hpp>
                  
                  int main()
                  {
                      typedef boost::ptr_map<int, int> int_map;
                      int_map mymap;
                  
                      BOOST_FOREACH(int_map::value_type p, mymap)
                      {
                      }
                  }
                  

                  我发现为容器使用 typedef 会使代码更容易编写.

                  I find that using a typedef for the container makes the code a lot easier to write.

                  另外,你应该尽量避免在 boost 中使用 detail 命名空间的内容,这是一个包含实现细节的 boost 约定.

                  Also, you should try to avoid using the contents of detail namespaces in boost, it's a boost convention that they contain implementation details.

                  这篇关于如何将 BOOST_FOREACH 与 boost::ptr_map 一起使用?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:如何让 boost::thread_group 执行固定数量的并行线程 下一篇:我什么时候必须使用 boost::asio:strand

                  相关文章

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

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

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

                    1. <legend id='S9Pzc'><style id='S9Pzc'><dir id='S9Pzc'><q id='S9Pzc'></q></dir></style></legend>