3

このC++11初期化を変更することは可能ですか?

const std::map<int, std::map<int, std::string>> test =
  {{1,
    {{1, "bla"},
     {2, "blie"}
    }
   },
   {3,
    {{1, "ha"},
     {2, "hie"}
    }
   }
  };

一時的なものを使用せずにBoost.Assignmentを使用して何らかの形式に?map_list_of残念ながら、この方法でネストすることはできないようです。私が間違っている?

注:私はいくつかのひどいマクロの準備ができています。それが一般的に十分に機能する限り、それは問題ありません。ターゲットコンパイラはIntelC++ 2013および/またはMSVS2012であるため、可変個引数テンプレートはOKではありません。

編集:私が使用したい「理想的な」ラッパーインターフェイスは次のようになります。

//header
extern const std::map<int, std::map<int, std::string>> test;

// source file
/*something*/ test
  /*something*/ 1,
  /*something*/ 1, "bla" /*something*/
  /*something*/ 2, "blie" /*something*/
  /*something*/ 2 //etc...

/*something*/空にすることができる場所。これには、C++11ブレースinitまたはの両方を使用する必要がありますboost::assign::map_list_of。私はここのような手動の繰り返しを避けようとしています:https ://stackoverflow.com/a/1872506/256138

4

1 に答える 1

4

map_list_ofこの方法でハッカーを使ってネストすることは可能です(ただし、その下に一時的なものが作成されている可能性があります。それはわかりません)

#include <map>
#include <string>
#include <boost/assign/list_of.hpp>
using boost::assign::map_list_of;

const std::map<int, std::map<int, std::string> > test =
    map_list_of
        (1, map_list_of
            (1, "bla")
            (2, "blie")
            .convert_to_container<std::map<int, std::string> >()
        )
        (3, map_list_of
            (1, "ha")
            (2, "hie")
            .convert_to_container<std::map<int, std::string> >()
        )
    ;

// Correctly prints "hie".
//std::cout << test.find(3)->second.find(2)->second << "\n";

可能なマクロインターフェース(主にそれが何を意味するのかわからないため、の要件を無視します):

#include <iostream>
#include <string>
#include <map>

#ifdef CPP_11_AVAILABLE // Unsure what the actual macro is.
#define map_entries_begin {
#define map_entries_end }
#define map_entry_begin {
#define map_entry_end },

#else
#include <boost/assign/list_of.hpp>
#define map_entries_begin boost::assign::map_list_of
#define map_entries_end
#define map_entry_begin (
#define map_entry_end )

#endif

const std::map<int, std::map<int, std::string>> test =
    map_entries_begin
        //------//
        map_entry_begin
            1, map_entries_begin
                 map_entry_begin 1, "bla" map_entry_end
                 map_entry_begin 2, "blie" map_entry_end
               map_entries_end
        map_entry_end

        //------//
        map_entry_begin
            3, map_entries_begin
                 map_entry_begin 1, "ha" map_entry_end
                 map_entry_begin 2, "hie" map_entry_end
               map_entries_end
        map_entry_end

    map_entries_end;

int main()
{
    std::cout << test.find(3)->second.find(2)->second << "\n";
    return 0;
}

確かにかなり冗長ですが、あなたの要件を満たしているようです。

http://ideone.com/6Xx2tでC++11オンラインデモを参照してください。

于 2012-09-19T11:22:42.990 に答える