- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
作为使用 Boost.Spirit 的更大语法的第一阶段,我尝试解析“true”和“false”以生成相应的 bool 值,true
和 false
.
我正在使用 Spirit.Lex 对输入进行标记化,并为整数和浮点文字(包括那些以宽松的科学记数法表示的文字)提供了一个有效的实现,公开了 int
和 float
属性。
#include <boost/spirit/include/lex_lexertl.hpp>
namespace lex = boost::spirit::lex;
typedef boost::mpl::vector<int, float, bool> token_value_type;
template <typename Lexer>
struct basic_literal_tokens : lex::lexer<Lexer> {
basic_literal_tokens() {
this->self.add_pattern("INT", "[-+]?[0-9]+");
int_literal = "{INT}";
// To be lexed as a float a numeric literal must have a decimal point
// or include an exponent, otherwise it will be considered an integer.
float_literal = "{INT}(((\\.[0-9]+)([eE]{INT})?)|([eE]{INT}))";
literal_true = "true";
literal_false = "false";
this->self = literal_true | literal_false | float_literal | int_literal;
}
lex::token_def<int> int_literal;
lex::token_def<float> float_literal;
lex::token_def<bool> literal_true, literal_false;
};
我的实际实现使用 Boost.Test,但这是一个独立的示例。
#include <string>
#include <iostream>
#include <cmath>
#include <cstdlib>
#include <limits>
bool parse_and_check_float(std::string const & input, float expected) {
typedef std::string::const_iterator base_iterator_type;
typedef lex::lexertl::token<base_iterator_type,
token_value_type
> token_type;
typedef lex::lexertl::lexer<token_type> lexer_type;
basic_literal_tokens<lexer_type> basic_literal_lexer;
base_iterator_type input_iter(input.begin());
float actual;
bool result = lex::tokenize_and_parse(input_iter, input.end(),
basic_literal_lexer,
basic_literal_lexer.float_literal,
actual);
return result && std::abs(expected - actual) < std::numeric_limits<float>::epsilon();
}
int main(int argc, char *argv[]) {
if (parse_and_check_float("+31.4e-1", 3.14)) {
return EXIT_SUCCESS;
} else {
return EXIT_FAILURE;
}
}
我的问题是在尝试解析“true”和“false”时。这是我正在使用的测试代码(删除 Boost.Test 部分后):
bool parse_and_check_bool(std::string const & input, bool expected) {
typedef std::string::const_iterator base_iterator_type;
typedef lex::lexertl::token<base_iterator_type,
token_value_type
> token_type;
typedef lex::lexertl::lexer<token_type> lexer_type;
basic_literal_tokens<lexer_type> basic_literal_lexer;
base_iterator_type input_iter(input.begin());
bool actual;
lex::token_def<bool> parser = expected ? basic_literal_lexer.literal_true
: basic_literal_lexer.literal_false;
bool result = lex::tokenize_and_parse(input_iter, input.end(),
basic_literal_lexer, parser,
actual);
return result && actual == expected;
}
但编译失败:
boost/spirit/home/qi/detail/assign_to.hpp: In function ‘void boost::spirit::traits::assign_to(const Iterator&, const Iterator&, Attribute&) [with Iterator = __gnu_cxx::__normal_iterator<const char*, std::basic_string<char, std::char_traits<char>, std::allocator<char> > >, Attribute = bool]’:
boost/spirit/home/lex/lexer/lexertl/token.hpp:434: instantiated from ‘static void boost::spirit::traits::assign_to_attribute_from_value<Attribute, boost::spirit::lex::lexertl::token<Iterator, AttributeTypes, HasState>, void>::call(const boost::spirit::lex::lexertl::token<Iterator, AttributeTypes, HasState>&, Attribute&) [with Attribute = bool, Iterator = __gnu_cxx::__normal_iterator<const char*, std::basic_string<char, std::char_traits<char>, std::allocator<char> > >, AttributeTypes = boost::mpl::vector<int, float, bool, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na, mpl_::na>, HasState = mpl_::bool_<true>]’
... backtrace of instantiation points ....
boost/spirit/home/qi/detail/assign_to.hpp:79: error: no matching function for call to ‘boost::spirit::traits::assign_to_attribute_from_iterators<bool, __gnu_cxx::__normal_iterator<const char*, std::basic_string<char, std::char_traits<char>, std::allocator<char> > >, void>::call(const __gnu_cxx::__normal_iterator<const char*, std::basic_string<char, std::char_traits<char>, std::allocator<char> > >&, const __gnu_cxx::__normal_iterator<const char*, std::basic_string<char, std::char_traits<char>, std::allocator<char> > >&, bool&)’
boost/spirit/home/qi/detail/construct.hpp:64: note: candidates are: static void boost::spirit::traits::assign_to_attribute_from_iterators<bool, Iterator, void>::call(const Iterator&, const Iterator&, char&) [with Iterator = __gnu_cxx::__normal_iterator<const char*, std::basic_string<char, std::char_traits<char>, std::allocator<char> > >]
我对此的解释是 Spirit.Qi 不知道如何将字符串转换为 bool 值——当然不是这样?以前有其他人这样做过吗?如果是,怎么办?
最佳答案
你想要类似的东西
qi::rule<Iterator, bool> true_false_parser;
a = qi::lexeme[ qi::no_case[ qi::eps > ( qi::lit("true")[ _val=true] | qi::lit("false")[ _val=false] ) ] ];
这将抛出当且仅当 token 不是“真”或“假”
默认false做
qi::rule<Iterator, bool> true_false_parser;
a = qi::lexeme[ qi::no_case[ ( qi::lit("true")[ _val=true] ) | (*qi::char_)[_val=false] ] ];
关于c++ - 使用 Boost.Spirit.Lex 和 Boost.Spirit.Qi 解析 "true"和 "false",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4643926/
这个问题在这里已经有了答案: Why in Python does "0, 0 == (0, 0)" equal "(0, False)"? (7 个回答) 去年关闭。 代码片段 1: a = Tru
Integer i = 127; Integer j = 127; System.out.println(i == j); System.out.println(i.equals(j)); Integ
我试图用 Python 进行类似下面的代码的比较,但对产生的输出感到困惑。 谁能解释为什么输出是这样的? >>> True, True == True, True (True, True, True)
我们的下拉值是动态的 010100。 你能帮我将这些值转换为 true、false 吗? Offer的值是10100,Reject的值是10111。所以这些需要转换成 10100 = true,fal
我正在测试,如果用户在页面顶部显示一种货币“EUR”和另一种货币“GBP”,那么我期望包含文本“EUR”和页面下方还存在另一个包含文本“GBP”的链接。它包含在一个名为 "nav-tabs au-ta
如何检查数组的所有元素是真值还是假值。 因为以下内容似乎没有做到这一点:_.all([true, true, true], true); 它返回:false? 最佳答案 您应该重新阅读_.every(
C#:我有一个如下所示的字符串变量: string a = "(true and true) or (true or false)"; 这可以是任何东西,它可以变得更复杂,比如: string b
ruby : true == true == true syntax error, unexpected tEQ 对比JavaScript: true == true == true // => tr
这个问题已经有答案了: Equality of truthy and falsy values (JavaScript) (3 个回答) Which equals operator (== vs ==
为什么 R 中的 TRUE == "TRUE" 是 TRUE? R 中是否有与 === 等效的内容? 更新: 这些都返回FALSE: TRUE == "True" TRUE == "true" TRU
简单的查询,可能不可能,但我知道那里有一些聪明的人:) 给定一个 bool 参数,我希望定义我的 where 子句来限制特定列的输出 - 或不执行任何操作。 因此,给定参数@bit = 1,结果将是:
编写 Excel 公式时,将值设置为 true、“true”还是 true() 是否有区别? 换句话来说,以下哪一个是最好的?还是要看具体情况? if (A1 = 1, true, false) if
如果我们评估这个:TRUE AND TRUE,为什么会这样? 'yes' : 'no' 等于 TRUE 但不等于 yes 何时评估:(TRUE AND TRUE) ? 'yes' : 'no' 等于
这个问题在这里已经有了答案: Behaviour of and operator in javascript [duplicate] (1 个回答) 关闭 7 年前。 如题所说,我不太明白为什么(t
我有一个包含 FromDate 、 ToDate 、 VendorName 和 GoodsName 的表单,一旦一切为真,我需要显示结果 示例: FromDate="11/20/2019"、ToDat
我最近参加了 Java 的入门测试,这个问题让我很困惑。完整的问题是: boolean b1 = true; boolean b2 = false; if (b2 != b1 != b2) S
我有一个模型,我有: ipv4_address = models.IPAddressField(verbose_name=_('ipv4 address'), blank=True, null=Tru
False in [True,True] False in pd.Series([True,True]) 第一行代码返回False第二行代码返回 True! 我想我一定是做错了什么或者遗漏了什么。当我
我可以在 Coq 中证明以下内容吗? Lemma bool_uip (H1 : true = true): H1 = eq_refl true. 即true = true 的所有证明都相同吗? 例如
如果我的理解是正确的,他们做的事情完全一样。为什么有人会使用“for”变体?仅仅是味道吗? 编辑:我想我也在考虑 for (;;)。 最佳答案 for (;;) 通常用于防止编译器警告: while(
我是一名优秀的程序员,十分优秀!