为了在 Boost.Spirit V2.x(尤其是 Boost.Spirit.Qi)中使用它们,真的有必要用 Boost.Fusion 包装结构/类吗?我更愿意使用语义动作来分配给成员。如果我没记错的话,这就是以前在 V1.x 中完成的方式......
计算器示例表明它仍然应该是可能的。到目前为止,我还没有找到一个很好的方法来做到这一点。
我想看看你会如何在员工示例中做到这一点。以下内容无法编译,但也许有一些方法可以使它工作:
template <typename Iterator>
struct employee_parser : qi::grammar<Iterator, employee(), ascii::space_type>
{
employee_parser() : employee_parser::base_type(start)
{
using qi::int_;
using qi::lit;
using qi::double_;
using qi::lexeme;
using ascii::char_;
quoted_string %= lexeme['"' >> +(char_ - '"') >> '"'];
start =
lit("employee")
>> '{'
>> int_[px::bind(&employee::age, qi::_val) = qi::_1] >> ','
>> quoted_string[px::bind(&employee::surname, qi::_val) = qi::_1] >> ','
>> quoted_string[px::bind(&employee::forename, qi::_val) = qi::_1] >> ','
>> double_[px::bind(&employee::salary, qi::_val) = qi::_1]
>> '}'
;
}
qi::rule<Iterator, std::string(), ascii::space_type> quoted_string;
qi::rule<Iterator, employee(), ascii::space_type> start;
};