2

ブーストチュートリアルがどのように機能するかを少し理解できなかったので、これを投稿しています。

オブジェクトがブーストmulti_indexコンテナの要素であるクラスがあります。

メンバー関数を使用してオブジェクトのメンバー変数を更新する必要があります。どうすればいいのかわかりません。私を手伝ってくれますか。簡単な例を用意しました。

#include <string>
#include <iostream>
#include <boost/multi_index_container.hpp>
#include <boost/multi_index/member.hpp>
#include <boost/multi_index/ordered_index.hpp>
#include<vector>

using boost::multi_index::multi_index_container;
using boost::multi_index::ordered_non_unique;
using boost::multi_index::ordered_unique;
using boost::multi_index::indexed_by;
using boost::multi_index::member;

class employee_entry
{
public:
   employee_entry( const std::string& first,
                   const std::string& last,
                   long id):
                   first_name_(first),
                   last_name_(last),
                   id_(id)
   {}
   void change(){id_++;}//causing the problem
   std::string first_name_;
   std::string last_name_;
   std::vector<int> mySet;
   long id_;

   std::vector<int>::iterator mySet_begin()  {return mySet.begin();   }
};


typedef multi_index_container<
employee_entry, indexed_by<
   ordered_unique<member<employee_entry, std::string, &employee_entry::first_name_> >
   , ordered_non_unique<member<employee_entry, std::string, &employee_entry::last_name_> >
   , ordered_non_unique<member<employee_entry, long, &employee_entry::id_> >
   >
> employee_set;

//employee set.... multi-index
employee_set m_employees;


int main()
{
   using boost::multi_index::nth_index;
   using boost::multi_index::get;

   typedef nth_index<employee_set, 0>::type first_name_view;
   first_name_view& fnv = get<0>(m_employees);

   fnv.insert(employee_entry("John", "Smith", 110));
   fnv.insert(employee_entry("Fudge", "Hunk", 97));

   ///get employees sorted by id
   typedef nth_index<employee_set, 2>::type id_view;
   id_view& idv = get <2> (m_employees);
   for(id_view::reverse_iterator it = idv.rbegin(), it_end(idv.rend()); it != it_end; ++it)
   {
       std::cout << it->first_name_  <<" "
                 << it->last_name_ << ":"
                 << it->id_ << std::endl;
       it->change();//calling the troublesome function
   }

   return 0;
}

生成されるエラーは次のとおりです。

 $c++ dr_function.cpp 
dr_function.cpp: In function ‘int main()’:
dr_function.cpp:65:19: error: passing ‘const employee_entry’ as ‘this’ argument of ‘void employee_entry::change()’ discards qualifiers [-fpermissive]
4

2 に答える 2

2

投稿した解決策は機能しません。せいぜいインデックスが文字化けし、最悪の場合、アプリがクラッシュします。最後のインデックスは に依存してemployee_entry::id_いるため、インデックスの順序を暗黙的に破っているため、自由に変更することはできません。この種のものについては、Boost.MultiIndex が更新機能を提供してreplaceおり、ここでmodify説明されています。特定のケースでは、次のようにメンバー関数を呼び出すことができます。change

idv.modify(idv.iterator_to(*it),boost::bind(&employee_entry::change,_1));

ちょっとした説明:idv.iterator_to(*it)逆イテレータを通常のイテレータに変換するだけです。これがmodify必要です。部分に関しては、これは適切な修飾ファンクターにboost::bindカプセル化されます。&employee_entry::changeこのようにして、Boost.MultiIndex に今後の変更を知らせ、id_それに応じてインデックスを更新します。

于 2012-05-27T20:23:33.163 に答える
0

まあ、私は少なくとも上記のコードをデバッグするために私の質問に答えています。私の主な関心事は、質問の下のコメントで議論され、答えられました。私は次のコードを作成long id_mutable、に変更void change(){...}しましたvoid change()const{...}

#include <string>
#include <iostream>
#include <boost/multi_index_container.hpp>
#include <boost/multi_index/member.hpp>
#include <boost/multi_index/ordered_index.hpp>
#include<vector>

using boost::multi_index::multi_index_container;
using boost::multi_index::ordered_non_unique;
using boost::multi_index::ordered_unique;
using boost::multi_index::indexed_by;
using boost::multi_index::member;

class employee_entry
{
public:
   employee_entry( const std::string& first,
                   const std::string& last,
                   long id):
                   first_name_(first),
                   last_name_(last),
                   id_(id)
   {}
   void change() const {id_++;}//causing the problem
   std::string first_name_;
   std::string last_name_;
   std::vector<int> mySet;
   mutable long id_;

   std::vector<int>::iterator mySet_begin()  {return mySet.begin();   }
};


typedef multi_index_container<
employee_entry, indexed_by<
   ordered_unique<member<employee_entry, std::string, &employee_entry::first_name_> >
   , ordered_non_unique<member<employee_entry, std::string, &employee_entry::last_name_> >
   , ordered_non_unique<member<employee_entry, long, &employee_entry::id_> >
   >
> employee_set;

//employee set.... multi-index
employee_set m_employees;


int main()
{
   using boost::multi_index::nth_index;
   using boost::multi_index::get;

   typedef nth_index<employee_set, 0>::type first_name_view;
   first_name_view& fnv = get<0>(m_employees);

   fnv.insert(employee_entry("John", "Smith", 110));
   fnv.insert(employee_entry("Fudge", "Hunk", 97));

   ///get employees sorted by id
   typedef nth_index<employee_set, 2>::type id_view;
   id_view& idv = get <2> (m_employees);
   for(id_view::reverse_iterator it = idv.rbegin(), it_end(idv.rend()); it != it_end; ++it)
   {
       std::cout << it->first_name_  <<" "
                 << it->last_name_ << ":"
                 << it->id_ << std::endl;
       it->change();//calling the troublesome function
   }

   return 0;
}
于 2012-05-25T23:10:21.287 に答える