boost assign list_of不适用于双重文字?

时间:2014-06-18 16:58:42

标签: c++ boost

我想使用boost的list_of来初始化vector<double>,但似乎向量最终会得到整数值。

我从这里的示例开始:http://www.boost.org/doc/libs/1_55_0b1/libs/assign/doc/index.html#complicated并将score_type更改为vector<double>并添加一些浮点文字。这是新代码:

#include <boost/assign/list_of.hpp>
#include <boost/assign/list_inserter.hpp>
#include <boost/assert.hpp>
#include <string>
#include <vector>
#include <map>


using namespace std;
using namespace boost::assign;

int main()
{
  typedef vector<double>                   score_type;
  typedef map<string,score_type>        team_score_map;
  typedef pair<string,score_type>       score_pair;

  team_score_map group1, group2;
  //
  // method 1: using 'insert()'
  //
  insert( group1 )( "Denmark", list_of(1.1)(1) )
    ( "Germany", list_of(0)(0) );
  BOOST_ASSERT( group1.size() == 2 );
  BOOST_ASSERT( group1[ "Denmark" ][1] == 1 );
  BOOST_ASSERT( group1[ "Denmark" ][0] == 1.1 );

  //
  // method 2: using 'list_of()'
  //
  group2 = list_of< score_pair >
    ( "Norway",  list_of(1)(5.9) )
    ( "Andorra", list_of(1)(1) );
  BOOST_ASSERT( group2.size() == 2 );
  BOOST_ASSERT( group2[ "Norway" ][0] == 1 );
  BOOST_ASSERT( group2[ "Norway" ][1] == 5 );
  BOOST_ASSERT( group2[ "Norway" ][1] == 5.9 );

  return 0;
}

方法1 insert的最后一个断言正常,但方法2 list_of的最后一个断言失败。我尝试使用((double)5.9)(5.9f)初始化无济于事。

我想现在我可以使用insert来解决这个问题。

思想?

感谢。

(我知道C ++ 11初始化列表,但我想了解这里发生了什么。)

1 个答案:

答案 0 :(得分:1)

如果你不告诉list_of期望什么类型,它会从第一次调用中猜到:

list_of
    (0) // int
    (0.5) // oops, already decided int

您可以指定:

list_of<double>(1)(5.9)

或者你可以确保第一次调用足以猜测:

list_of(1.0)(5.9)