提升图书馆格式;获取std :: string

时间:2010-11-12 19:44:08

标签: c++ boost

我想添加一些我使用boost库格式化的字符串,如下所示

boost::container::vector<std::string> someStringVector;
someStringVector.push_back(
    format("after is x:%f y:%f and before is x:%f y:%f\r\n") % 
    temp.x %
    temp.y %
    this->body->GetPosition().x %
    this->body->GetPosition().y;

编译器抱怨它无法转换类型,我尝试将.str()附加到格式返回的末尾,但它仍然抱怨。

我得到的错误信息是:

error C2664: 'void boost::container::vector<T>::push_back(
  const std::basic_string<_Elem,_Traits,_Ax> &)' :
  cannot convert parameter 1 from
    'boost::basic_format<Ch>' to 
    'const std::basic_string<_Elem,_Traits,_Ax> &'

任何人都有一些见解?

2 个答案:

答案 0 :(得分:19)

你需要在调用boost :: str时包装格式,如下所示:

str( format("after is x:%f y:%f and before is x:%f y:%f\r\n")
     % temp.x % temp.y % this->body->GetPosition().x % this->body->GetPosition().y)

答案 1 :(得分:6)

在生成的格式对象中添加“.str()”就足够了(对我来说很有用)。从你的问题确切地说你是如何做到这一点并不清楚,但我确实注意到你的例子在push_back()上缺少关闭的parens。

请注意,您希望对从最后一个%运算符返回的格式对象调用str(),最简单的方法是将整个格式行包装在这样的parens中:

boost::container::vector<std::string> someStringVector;
someStringVector.push_back(
    (format("after is x:%f y:%f and before is x:%f y:%f\r\n") % 
    temp.x %
    temp.y %
    this->body->GetPosition().x %
    this->body->GetPosition().y).str() );