当看到 C++ 时 UNDEF 和 notype() 是什么意思?使用dumpbin 获取库信息?
我使用 dumpbin /symbols 来查看我创建的库。某些函数的输出中包含 UNDEF notype。这意味着什么?有没有任何链接来研究dumpbin输出的结构?
I used dumpbin /symbols to see the library I created. Some functions have UNDEF notype in the output. What does that mean? Is there any link to study the structure of dumpbin output?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们可以查看 dumpbin /SYMBOLS 的 MSDN 文档:
notype()
的含义正如其表面所言:它没有类型。We can take a look at the MSDN documentation for
dumpbin /SYMBOLS
:And
notype()
means exactly what it says on the tin: it has no type.