捐赠 | 广告 | 注册 | 发布 | 上传 | 关于我们    
  沪ICP备05001939号 DELPHI盒子 | 盒子论坛 | 盒子文章 | 盒子问答悬赏 | 最新更新 | 论坛检索 | 下载中心 | 高级搜索    
  精品专区 | 繁體中文 | 奖励公告栏 | 直通车账号登陆 | 关闭GOOGLE广告 | 临时留言    
盒子资源分类
全部展开 - 全部合拢
Fast Memory Manager v4.70
关键字:FastMM Memory Leak 快速内存管理
来 自:转载,http://sourceforge.net/projects/fastmm/
平 台:Win2k/XP/NT,Win2003 下载所需:0 火柴
深浅度:高级 完成时间:2006/8/4
发布者:wqquake 发布时间:2006/8/26
编辑器:DELPHI7 语  种:ENGLISH
分 类:开发 下载浏览:2920/15723
加入到我的收藏
下载错误报错
登陆以后才能下载
 用户名:
 密 码:
自动登陆(30天有效)
图片如果打不开,说明流量不够了,请稍候下载……
FastMM 很好用的,没功夫说话了,下吧。

Version 4.70 (4 August 2006):
----------
  - Added the Simplified Chinese translation(简体中文翻译) by JiYuan Xie.
  - Added the updated Russian as well as the Ukrainian translation by Andrey Shtukaturov.
  - Fixed two bugs in the leak class detection code that would sometimes fail to detect the class of leaked objects and strings, and report them as 'unknown'. (Thanks to Dimitry Timokhov)
Google
 
本站原创作品,未经作者许可,严禁任何方式转载;转载作品,如果侵犯了您的权益,请联系我们
龙脉加密锁 15元起 Grid++Report 报表 申请支付@网
 相关文章
Fastmm 4.88
hke 2008/8/27 下+1893/浏+11334 评+1
FastMM4Options.inc的中文翻译
wqyfavor 2008/8/1 下+890/浏+16257 评+7
Fastmm 4.84
register 2008/7/23 下+1056/浏+9769 评+6
Fast Memory Manager v4.70
wqquake 2006/8/26 下+2920/浏+15724 评+8
Fast Memory Manager v4.66
ynkm 2006/5/25 下+859/浏+11198 评+6
FastMM v4.64 (内存管理)
Lsuper 2006/4/5 下+752/浏+12856 评+3
Borland Delphi 7 FastMM RTL 补丁 v1.2
Lsuper 2006/3/19 下+2143/浏+15851 评+8
Borland Delphi 7 FastMM RTL 补丁 v1.1
Lsuper 2006/3/12 下+1227/浏+15028 评+10
Borland Delphi 7 FastMM RTL 补丁
Lsuper@DelphiBBS 2006/3/7 下+1070/浏+15069 评+16
FASTMM v4.27 (提高IDE以及Delphi应用程序速…
libra01 2005/8/31 下+1436/浏+21047 评+26
相关评论
共有评论8条 当前显示最后6条评论
whb1573 2006/8/28 11:17:47
请问怎么用啊!
loucuff 2006/8/31 21:37:37
使用的时候:
    1、解开FastMM470.zip,找到里面的FastMm470\Replacement BorlndMM DLL\Precompiled\for Delphi IDE\Performance目录下的borlndMM.dll文件,把它复制到Delphi安装目录的bin中,覆盖原文件;
    2、把FastMM470\Translations\Chinese (Simplified)目录下的FastMM4Messages.pas文件和FastMM470目录下的FastMM4.pas以及FastMM4Options.inc拷到你的项目中,在dpr文件uses后面第一个引用文件FastMM4.pas,第二个引用文件FastMM4Messages.pas;
    3、重新编译项目。
jxj0561 2006/10/3 23:45:31
这个东东可以在D7下用吗?
cc_cn 2007/6/28 10:50:52
怎么是个类似控件一样的东东啊~~我以为是个独立的小程序呢~~
hke 2007/11/21 12:35:19
这个貌似可以检查内存泄露
怎么检查呢
zh2000 2008/5/23 15:22:18
FASTMM v4.27 下载
使用方法:
解开FastMM427.zip,找到里面的FastMm427\Replacement BorlndMM DLL\Precompiled\for Delphi IDE\Performance目录下的borlndMM.dll文件,把它复制到Delphi安装目录的bin中,把原文件覆盖即可。

在应用程序中的使用,作者是这样说的:
Using FastMM is very simple. All you have to do is add FastMM.pas as the very first unit in your project's .dpr file. Note that if you application uses .DLL files and you will be sharing memory (i.e. passing long strings or dynamic arrays between the DLL and main application), that you have to use FastMM in the DLL as well. If FastMM is not the first file in the "uses" section of the .dpr file, you will get an "invalid pointer operation" during program startup (meaning the default MM has already been used to allocate some memory). 

意思是您只需要把FastMM4.pas加入到你的项目中,但要保证dpr文件uses后面第一个文件就是FastMM4.pas即可,经过本人实验,实际使用中还要加FastMM4Messages.pas或者设置一个搜索路径(设路径比较麻烦,还是加进来吧)。然后编译你的程序就可以了。
如果你的dll用了共享内存,那么就用FastMM427\Replacement BorlndMM DLL\Precompiled\for Applications\Performance中的BorlndMM.dll和你的DLL文件一起分发即可。


在d7下安装FastMM4
FastMM 在外国 Delphi 社区非常有名,其主要目的就是重新实现一个高效、安全、稳定的内存管理器(Borland 的内存管理器问题多多,如 Dll 和 Exe 间无法共享,多线程下效率底--一些情况下甚至于低一个数量级!)
总而言之就是使用之后速度提升很大.


网上找到的安装方法,不过还会碰见些问题  
先网上自行搜索下载 FastMm 解压

找到里面的\Replacement BorlndMM DLL\Precompiled\for Delphi IDE\Performance目录下的borlndMM.dll文件,把它复制到Delphi安装目录的bin中(建议把原来的备份下),把原文件覆盖即可。您只需要把FastMM4.pas加入到你的项目中,但要保证dpr文件uses后面第一个文件就是FastMM4.pas即可,经过本人实验,实际使用中还要加FastMM4Messages.pas或者设置一个搜索路径(设路径比较麻烦,还是加进来吧)。

这里引用 FastMM4.pas 要这样操作,安住 ctrl+F12 双击 类型为 Project的 文件 有这么一句
uses
  Forms,
新建 pas文件 命名为 FastMM4.pas 直接把代码复制过来 然后在 uses 后面可能会出现
FastMM4 in 'Source\FastMM4.pas';
这时把 该这样
uses
  FastMM4,
  Forms,
同样的 FastMM4Messages.pas 文件也如此

另外 因为我设置了 项目的lib路径 所以还得把FastMM4.dcu和FastMM4Messages.dcu放到我的项目根目录下,如果提示找不到的话,可以放到delphi的lib目录里面去,

最后 在调试程序的时候,关闭了可能会弹出个提示框,提示内存什么之类的,我也没搞懂,别管它就行了,其实这个可以消除的,但要重新编译 FastMM4 ,不嫌麻烦就自己网上找答案嘛. 

在delphi7中使用fastMM 4.62编译时提示"file not found fastMM4Option.inc" 
怎么处理? 
 
来自: magicgod, 时间: 2006/04/11 16:01:19, ID: 3411383  
把fastMM4Option.inc的路径加到search unit去,或者把fastMM4Option.inc拷贝到lib下去。
我要发表评论 查看全部评论
 
  DELPHI盒子版权所有 1999-2023 V4.01 粤ICP备10103342号-1 更新RSS列表