c++++ 中的调用约定定义了函数参数传递和返回值的方式,包括 cdecl、fastcall、thiscall 和 stdcall。实战中,stdcall 调用约定可用于加载和调用 dll 中的函数。
C++ 函数调用约定
在 C++ 中,调用约定定义了函数的参数传递和返回的方式。不同的调用约定在性能、内存使用和代码可移植性方面具有不同的权衡取舍。
常见调用约定
- cdecl(又称 stdcall):适用于 Windows 和 Linux,参数从右到左压入栈,从左到右弹出。
- fastcall:只在 Windows 中使用,通过寄存器传递前两个参数,其他参数压入栈。
- thiscall:在面向对象编程中用于成员函数,this 指针作为第一个参数通过寄存器传递。
- stdcall:与 cdecl 类似,但使用 Windows 风格的名称修饰。
实战案例
以下 C++ 代码演示了使用 stdcall 调用约定的函数:
#include <windows.h> // 只适用于 Windows <a style='color:#f60; text-decoration:underline;' href="https://www.php.cn/zt/58423.html" target="_blank">typedef</a> void (WINAPI *pfnPrintString)(const char*); int main() { // 加载 DLL 并获取函数指针 HMODULE hDll = LoadLibrary("mydll.dll"); pfnPrintString PrintString = (pfnPrintString)GetProcAddress(hDll, "PrintString"); // 调用函数,传递参数 PrintString("Hello, world!"); // 卸载 DLL FreeLibrary(hDll); return 0; }
登录后复制
在该示例中,使用 stdcall 调用约定从 DLL 加载并调用 PrintString 函数。
以上就是C++ 中函数调用约定有哪些?的详细内容,更多请关注叮当号网其它相关文章!
文章来自互联网,只做分享使用。发布者:周斌,转转请注明出处:https://www.dingdanghao.com/article/341434.html