问题标签 [getmem]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
delphi - Delphi Access Violation Error When Assigning Strings between record types
I have a simple record type. I allocate an new instance of this record and use a procedure ("_clone") to copy values from an existing record to the new one. I obtain an access violation only when assigin a string value.
Any ideas? Help is much appreciated.
TYPE Definition:
Calling application below:
delphi - 为什么使用 Mike Heydon 的 TStringBuilder 类会出现访问冲突?
我正在使用从.Net 移植到 Delphi 7的 TStringBuilder 类。
这是我的代码片段:
我遇到了 AV 错误。当我创建大小为 1024 倍的内存时,我可以缓解这个问题,但有时它仍然会发生。
难道我做错了什么?
delphi - 大容量记录器应用程序使用什么分配方法?
我正在使用 Delphi 开发记录器/嗅探器。在操作期间,我获得了大量数据,在压力操作期间可以累积到大约 3 GB 的数据。在某些计算机上,当我们达到这些级别时,应用程序会停止运行,有时还会引发异常。
目前我正在使用 GetMem 函数将指针分配给每条消息。
有没有更好的方法来分配内存,这样我就可以最大限度地减少失败的机会?请记住,我不能将大小限制为硬限制。
您如何看待使用 HeapAlloc、VirtualAlloc 甚至映射文件?哪个会更好?
谢谢你。
android - 如何将空闲内存信息放入 texview
我怎样才能把它放在文本视图中?
textview id 例如freemem
。文本视图位于 swipeview.thans 的第二个选项卡中
delphi - 如何为指向记录的指针分配内存?德尔福 7
我有这种类型:
我想为 TRegex_sec 类型分配内存:
我遇到的错误是“不兼容的类型”:Assertions.secs[0]<-- here
另一个尝试,同样的错误:
如何正确执行?