#fastcall

C/C++:函数调用规则__stdcall,__cdecl,__pascal,__fastcall

__cdecl__cdecl是CDeclaration 的缩写,表示C语言默认的函数调用方法:所有参数从右到左依次入栈,这些参数由调用者清除,称为手动清栈。被调用函数不会要求调用者传递多少参数,调用者传递过多或者过少的参数,甚至完全不同的参数都不会产生编译阶段的错误。__stdcall__stdcall是St...

__cdecl、__stdcall、__fastcall、thiscall 进栈、出栈区别

https://en.wikipedia.org/wiki/X86_calling_conventions   https://msdn.microsoft.com/en-us/library/984x0h58%28v=vs.71%29.aspx有个题目是func(inta,intb){&...