Functions.MemWalk 方法 | |
遍历内存系统,检查有效性。
命名空间:
XSharp.RT
程序集:
XSharp.RT (在 XSharp.RT.dll 中) 版本:2.22 GA
语法 FUNCTION MemWalk(
pEnum AS MemWalker
) AS LOGIC
public static bool MemWalk(
MemWalker pEnum
)
查看代码参数
- pEnum
- 类型:MemWalker
返回值
类型:
Boolean
如果成功返回 TRUE;否则返回 FALSE。
备注 备注 Only memory blocks that were allocated while MemTrace was set to TRUE will be included.
示例
此示例在使用其他内存管理函数分配和释放内存后使用 MemWalk():
1p := MemAlloc(100)
2MemFree(p)
3? MemWalk()
参见