标签: windows memory-management virtualalloc
当lpAddress函数调用的VirtualAlloc参数为空时,操作系统如何确定要分配的虚拟地址空间区域?
lpAddress
VirtualAlloc
答案 0 :(得分:1)
当 VirtualAlloc 函数为 lpAddress 参数提供 NULL 时,该函数将在另一个虚拟页面中分配,分配大小将四舍五入到该页面边界。
资源:
VirtualAlloc function reference
A stackoverflow post that has related useful info
希望这有帮助