⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 while_p_as_parser_tests.cpp

📁 boost库提供标准的C++ API 配合dev c++使用,功能更加强大
💻 CPP
字号:
/*=============================================================================
    Copyright (c) 2003 Martin Wille
    http://spirit.sourceforge.net/

    Use, modification and distribution is subject to the Boost Software
    License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
    http://www.boost.org/LICENSE_1_0.txt)
=============================================================================*/
#include <boost/spirit/core.hpp>
#include <boost/spirit/dynamic/while.hpp>

extern bool fun();

struct ftor
{
    bool operator()() const;
};

int
main()
{
    //////////////////////////////////
    // compile time check wether as_parser<> works for while_p

    ::boost::spirit::rule<> r;

    r = ::boost::spirit::while_p('-')['-'];
    r = ::boost::spirit::while_p("-")["-"];

    r = ::boost::spirit::while_p(&fun)["foo"];
    r = ::boost::spirit::while_p(ftor())["foo"];

    r = ::boost::spirit::while_p(r)[r];

    r = ::boost::spirit::do_p['-'].while_p('-');
    r = ::boost::spirit::do_p["-"].while_p("-");

    r = ::boost::spirit::do_p["foo"].while_p(&fun);
    r = ::boost::spirit::do_p["foo"].while_p(ftor());

    r = ::boost::spirit::do_p[r].while_p(r);
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -