使用 clang API 打印参数的类型 (ParmVarDecl)
我需要使用 clang API 打印 C++ 源文件中参数的类型。
如果我有 clang 中的参数表示形式 (ParmVarDecl* param
),我可以使用 param->getNameAsString()
打印参数的名称。我需要一个方法param->getTypeAsString()
,但没有这样的方法。那么还有其他方法来完成这项任务吗?
I need to print the type of a parameter in a C++ source file using the clang API.
If I have a parameter representation in clang (ParmVarDecl* param
) I can print the name of the parameter using param->getNameAsString()
. I would need a method param->getTypeAsString()
, but there is no such method. So is there another way to do this task?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 llvm irc 中得到了我的问题的答案:
有一个方法
std::string clang::QualType::getAsString(SplitQualType split)
所以这对我有用:
Got the answer to my question in the llvm irc:
There is a method
std::string clang::QualType::getAsString(SplitQualType split)
So this does work for me:
您可以使用
typeid
来获取任何类型的名称。尽管它会因编译器的不同而有所不同,并且可能不是一个漂亮的名字。如果您需要对很多类执行此操作,则可以将调用作为基类的一部分,然后任何需要该功能的类都可以从它继承。
You can use
typeid
to get the name of any type. Although it will vary from compiler to compiler, and may not be a pretty name.If you need to do this for a lot of classes, you could make the call part of a base class, then any class that needs the functionality can just inherit from it.