Visual Studio中静态成员函数的默认调用约定是什么?

发布于 2024-12-02 13:24:50 字数 48 浏览 0 评论 0原文

微软编译器的静态成员函数的默认调用约定是什么? 可以把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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

可爱咩 2024-12-09 13:24:51

默认约定是项目选项中设置的内容(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)

调妓 2024-12-09 13:24:51

默认调用约定是 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文