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++ 方法和类。你需要一个真正的解析器。
正则表达式确实不适合解析 C++ 等语言。像模板这样的语言特性需要额外的知识才能正确解析。
考虑以下
template<class T> T SomeTemplate(); typedef int SomeType; if(SomeTemplate<SomeType>()) { }
你如何区分比较和调用模板函数?