Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在评估使用 exprtk 来评估字符串表达式(例如,“a”+“b”),因此,我试图创建一个 std::string 解析器(exprtk::parser)。
这会在编译时抛出一堆错误,这些错误是关于多个实例化为相同签名的重载方法(parser::operator() 和 parser::get_variable())。
我没有在文档中找到任何可以执行此操作的内容,尽管它说它处理字符串类型。
我怎么能做到这一点?