Tag
const修饰符紧贴谁就约束谁:constintp约束所指内容,intconstp约束指针本身;二者等价于intconstp和constintconstp则两者皆不可变。
查看更多 2026-05-26
__cdecl由调用者清理栈,__stdcall由被调者清理栈;前者符号名如_foo,后者如_foo@8;二者ABI不兼容,混用导致栈失衡崩溃。
查看更多 2026-05-23
Demand feedback