gpt4 book ai didi

c++ - Boost Spirit Qi - 使用基于流的解析复制最后一个字母

转载 作者:IT老高 更新时间:2023-10-28 12:49:08 26 4
gpt4 key购买 nike

这可能很明显,但是为什么 boost 中基于流的解析会重复最后一个字母呢?我一定是做错了什么:

#include <iostream>
#include <sstream>

#include <boost/spirit/include/qi.hpp>

namespace qi = boost::spirit::qi;

int main() {
std::string input = "hello";
std::stringstream ss(input);

std::string r1, r2;
boost::spirit::istream_iterator first(ss), last;

qi::phrase_parse(input.begin(), input.end(), qi::lexeme[qi::alpha >> *qi::alnum], qi::space, r1);

std::cout << r1 << std::endl; // prints "hello"

qi::phrase_parse(first, last, qi::lexeme[qi::alpha >> *qi::alnum], qi::space, r2);

std::cout << r2 << std::endl; // prints "helloo"
}

使用 XCode 5.0 和 Boost 1.54.0 测试。

编辑:该问题似乎特定于 libc++。有人用 Clang care 来确认吗?

最佳答案

如果我理解正确的话,you're not supposed to use input iterators ,因为它们会给回溯带来问题。也许这只是纯粹的运气/实现上的不同,这有时完全有效。

关于c++ - Boost Spirit Qi - 使用基于流的解析复制最后一个字母,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19401248/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com