Visual Studio中静态成员函数的默认调用约定是什么?
微软编译器的静态成员函数的默认调用约定是什么? 可以把WINAPI放在前面来改吗?
What is the default calling convention of static member functions for Microsoft's compiler?
Can I change it by placing WINAPI in front of it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
默认约定是项目选项中设置的内容(C/C++ -> 高级 -> 调用约定),默认为
__cdecl
(命令行选项/Gd)
The default convention is what ever is set in the project options (C/C++ -> Advanced -> Calling Convention), this defaults to
__cdecl
(command line option/Gd
)默认调用约定是 cdecl。是的,您可以覆盖它并指定调用约定。在这方面,静态成员函数没有什么特别之处。
The default calling convention is cdecl. Yes, you can override this and specify the calling convention. In this regard there is nothing special about static member functions.