哪个 C++编译器在名称修改中使用访问说明符?
我知道 MSVC 有,而 GCC 没有? 其他人呢?
I know MSVC does, and GCC doesn't?
What about the others?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我知道 MSVC 有,而 GCC 没有? 其他人呢?
I know MSVC does, and GCC doesn't?
What about the others?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
@Neil:MSVC 确实: http:// /labs.trolltech.com/blogs/2009/08/12/some-thoughts-on-binary-compatibility/
编辑:抱歉,我想回复。
@Neil: MSVC does: http://labs.trolltech.com/blogs/2009/08/12/some-thoughts-on-binary-compatibility/
EDIT: sorry, i meant to reply.
这可能不仅取决于编译器,还取决于平台。 ARM 名称修饰方案不使用访问修饰符来修饰名称。 Itanium 确实如此(gcc 遵循这个)。据我所知,微软是唯一一家在自己的方案中使用它的公司。
This probably not only depends on compiler but also on platform. ARM name mangling scheme does not use access modifiers to mangle names. Itanium does (gcc follows this one). Microsoft as far as I know is the only one to use it on it's own scheme.