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.
当前的 C++ 编译器采用什么路径来实现 C++11 正则表达式库?
据我了解,生成实现识别特定正则表达式的确定性有限状态机的代码是最简单的方法,但是,据推测,这意味着编译器本身必须解析对库的函数调用。 -标准方式(即通过直接实现它们)或某种多态技巧在库代码本身中起作用(我认为在 C++ 中不可能发生的事情)。
他们是否使用了一些替代的、更智能的纯 C++ 方法?好像会很复杂!