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.
我将为 IDE 添加自动完成功能,众所周知,Clang 对用户非常友好。它可以用来即时解析 c/c++ 文件并返回类信息(名称、方法、参数)吗?
是的,您可以使用多个 API:clang 二进制文件、libclang 共享库(又名 clang-c)、内部 API(它们可以在 clang 版本之间更改)、python 绑定到 clang-c。
首选 python 绑定或 clang-c。