- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的目标是获得一个设置界面,其中包含我的应用程序设置信息。这可能是仅在应用程序运行时相关的信息以及应该是永久性的信息。为此,我认为在该应用程序设置界面中创建一个应用程序界面和一个持久设置界面是一个好主意,这样我就可以在 Ini 文件、数据库、加密文件等等之间切换。我认为代码有效。但是关闭 FastMM 后,TiniFile 中出现内存泄漏,我不知道为什么。这是带有类的接口(interface)单元。
unit UAPPSettings;
interface
uses
IniFiles;
type
IPersistentSettings = Interface
['{11542859-DEA3-4DBB-9A88-2068E407552C}']
function ReadString(Section, Name, Default: String): string;
procedure WriteString(Section, Name, Default: String);
function ReadPassword: string;
procedure WritePassword(Password: String);
end;
type
IAppSettings = Interface
['{559B8219-7D81-44CA-87A0-6D261B4A87E7}']
function GetPersistentSettings: IPersistentSettings;
property PersistentSettings: IPersistentSettings read GetPersistentSettings;
End;
type
TAppSettings = class(TInterfacedObject, IAppSettings)
strict private
FPersistentSettings: IPersistentSettings;
function GetPersistentSettings: IPersistentSettings;
procedure SetPersistentSettings(const Value: IPersistentSettings);
property PersistentSettings: IPersistentSettings read GetPersistentSettings write SetPersistentSettings;
function _AddRef: Integer; stdcall;
function _Release: Integer; stdcall;
public
constructor create(aPersistentSettings: IPersistentSettings);
end;
type
TIniSettings = class(TInterfacedObject, IPersistentSettings)
strict private
FIniFile: TIniFile;
FfilePath: String;
function _AddRef: Integer; stdcall;
function _Release: Integer; stdcall;
function ReadString(Section, Name, Default: String): string;
procedure WriteString(Section, Name, Default: String);
function ReadPassword: string;
procedure WritePassword(Password: string);
public
constructor create(FilePath: String);
end;
var
APPSettings: IAppSettings;
implementation
uses
FMX.Types;
{ TIniSettings }
constructor TIniSettings.create(FilePath: String);
begin
FfilePath := FilePath;
end;
function TIniSettings.ReadPassword: string;
begin
Result := ReadString('App', 'Passwort', '');
end;
function TIniSettings.ReadString(Section, Name, Default: String): string;
begin
If FIniFile.ValueExists(Section, Name) = false then
WriteString(Section, Name, Default);
Result := FIniFile.ReadString(Section, Name, Default);
end;
procedure TIniSettings.WritePassword(Password: string);
begin
WriteString('App', 'Passwort', Password);
end;
procedure TIniSettings.WriteString(Section, Name, Default: String);
begin
FIniFile.WriteString(Section, Name, Default);
end;
function TIniSettings._AddRef: Integer;
begin
log.d('IniSettings _AddRef');
FIniFile := TIniFile.create(FfilePath);
Result := inherited _AddRef;
end;
function TIniSettings._Release: Integer;
begin
log.d('IniSettings _Release');
Result := inherited _Release;
FIniFile.Free;
FIniFile := nil;
end;
{ TAppSettings }
constructor TAppSettings.create(aPersistentSettings: IPersistentSettings);
begin
FPersistentSettings := aPersistentSettings;
end;
function TAppSettings.GetPersistentSettings: IPersistentSettings;
begin
Result := FPersistentSettings;
end;
procedure TAppSettings.SetPersistentSettings(const Value: IPersistentSettings);
begin
FPersistentSettings := Value;
end;
function TAppSettings._AddRef: Integer;
begin
log.d('AppSettings _AddRef');
Result := inherited _AddRef;
end;
function TAppSettings._Release: Integer;
begin
log.d('AppSettings _Release');
Result := inherited _Release;
FPersistentSettings := nil;
end;
end.
这是我创建对象的方法:
APPSettings := TAppSettings.create(TIniSettings.create(System.IOUtils.TPath.GetDocumentsPath + System.SysUtils.PathDelim + 'config.ini'));
任何有关更好编码的建议都非常感谢
最佳答案
代码中的问题在于,您将 _AddRef
和 _Release
方法用于调用这两个方法的实例的内存管理以外的目的。
以下代码是问题的原因:
function TIniSettings._AddRef: Integer;
begin
log.d('IniSettings _AddRef');
FIniFile := TIniFile.create(FfilePath);
Result := inherited _AddRef;
end;
function TIniSettings._Release: Integer;
begin
log.d('IniSettings _Release');
Result := inherited _Release;
FIniFile.Free;
FIniFile := nil;
end;
您正在 _AddRef
方法中构造 FIniFile
实例,这是错误的位置,并且 _Release
是错误的释放位置FNiFile
.
_AddRef
和 _Release
方法可以在实例生命周期内多次调用,并且每次调用 _AddRef
都会导致构造新的 TIniFile
实例。
为了正确的内存管理,这两个方法将被调用相同的次数,但_AddRef
可能会连续调用多次,然后调用多个_Release
根据代码,调用将在将来的某个时间进行。
换句话说,以下序列也是可能的:
_AddRef
_AddRef
_Release
_Release
或
_AddRef
_AddRef
_Release
_AddRef
_Release
_Release
当您调用 APPSettings := TAppSettings.create(TIniSettings.create(...
) 时,第一个 _AddRef
将在将实例作为 aPersistentSettings
传递时被调用code> 参数,因为它没有声明为 const。然后,当将 aPersistentSettings
分配给 FPercientSettings
时,将调用下一个 _AddRef
,这第二次调用将造成泄漏TIniFile
实例。
在构造函数调用结束时,_Release
调用将与 aPersistentSettings
参数 _AddRef
调用相匹配。这还将释放 ini 文件,并且 FIniFile
将为 nil
并且无法使用,直到您再次触发 FPercientSettings
实例上的引用计数。
您可能希望在 TIniSettings
构造函数中创建 FIniFile
并在其析构函数中销毁它,或者引入其他方法(Open/Close
)如果您不想一直创建该 ini 文件并且您将在任何读取或写入操作中调用它们,则将其添加到将用于此目的的 TIniSettings
中。
当您从 _AddRef
和 _Release
中删除与 ini 文件相关的代码时,您不再需要在类中实现它们,因为默认实现将完成这项工作。
仅当未在 _AddRef
中分配时,还有其他方法可以通过创建 TIniFile
来修复代码,但引用计数方法仍然是执行以下操作的错误位置您必须确保不会意外地在错误的位置触发额外的引用计数,这可能会导致您在可能仍然需要时得到 nil FIniFile
变量。
function TIniSettings._AddRef: Integer;
begin
log.d('IniSettings _AddRef');
if not Assigned(FIniFile) then
FIniFile := TIniFile.create(FfilePath);
Result := inherited _AddRef;
end;
关于Delphi - 使用接口(interface)内的接口(interface)时,我出现内存泄漏,但不知道为什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/76513087/
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题? Update the question所以它是on-topic对于堆栈溢出。 9年前关闭。 Improve this que
我有一堆 php 脚本计划在 CentOS 机器上的 cron 中每隔几分钟运行一次。我希望每个脚本在启动时自我检查它的前一个实例是否仍在运行,如果是则停止。 最佳答案 我这样做是为了管理任务并确保它
是否有 bash 命令、程序或 libusb 函数(尽管我没有找到)来指示 USB 设备的 OUT 或 IN 端点是什么? 例如,libusb_interface_descriptor(来自 libu
我如何知道 NSTextField 何时成为第一响应者(即当用户单击它来激活它时,但在他们开始输入之前)。我尝试了 controlTextDidBeginEditing 但直到用户键入第一个字符后才会
我怎么知道我的代码何时完成循环?完成后我还得再运行一些代码,但只有当我在那里写的所有东西都完成后它才能运行。 obj.data.forEach(function(collection) {
我正在使用音频标签,我希望它能计算播放了多少次。 我的代码是这样的: ; ; ; 然后在一个javascript文件中 Var n=0; function doing(onplaying)
我正在尝试向 Package-Explorer 的项目上下文菜单添加一个子菜单。但是,我找不到该菜单的 menuid。 所以我的问题是如何在 eclipse 中找到 menuid? 非常感谢您的帮助。
我有一个名为“下一步”的按钮,它存在于几个 asp.net 页面中。实际上它是在用户控件中。单击“下一步”时,它会调用 JavaScript 中的函数 CheckServicesAndStates。我
我正在尝试在 Visual Studio 中使用 C++ 以纳秒为单位计算耗时。我做了一些测试,结果总是以 00 结尾。这是否意味着我的处理器(Ryzen 7-1800X)不支持 ~1 纳秒的分辨率,
我有一个自定义 ListView ,其中包含一些元素和一个复选框。当我点击一个按钮时。我想知道已检查的元素的位置。下面是我的代码 public class Results extends ListAc
如何在使用 J2ME 编写的应用程序中获取网络运营商名称? 我最近正在尝试在 Nokia s40 上开发一个应用程序,它应该具有对特定网络运营商的独占访问权限。有没有这样的API或库? 最佳答案 没有
我使用服务器客户端组件,当在此组件的 TransferFile 事件中接收文件时,我使用警报消息组件。所以我希望,如果用户单击警报消息,程序将继续执行 TransferFile 事件中的代码,以在单击
如果我创建一个类A具有一些属性,例如 a, b, c我创建对象 A x1; A x2; A x3; ... A xN 。有没有办法在同一个类中创建一个方法来检索我创建的所有对象?我想创建类似 stat
我正在制作一个应用程序,其中包含相同布局的 81 个按钮。它们都被称为我创建的名为“Tile”的对象。问题是这些图 block 存储在数组中,因此我需要知道以 int 格式单击了哪个按钮才能调用图 b
UIProgressView有这个setProgress:animated: API。 有没有办法确切知道动画何时停止? 我的意思是这样的? [myProgress setProgress:0.8f
我正在使用两个 jQuery 队列,我希望其中一个队列在另一个队列完成后出队。我怎么知道第一个是否完成?我应该使用第三个队列吗?! 这是我所拥有的: var $q = $({}); $q.que
jQuery 中有没有一种方法可以知道是否至少有一个复选框已被选中? 我有一个包含很多复选框的表单,每个复选框都不同。 我需要一种 jQuery 的方式来表达这样的内容,这就是逻辑: If at le
给定 2 个选择 100 50 100 在这两种情况下,我都想在 .example 中获取数字,使用相同的选择器或者以某种方式知道 .no-text 和 之间的区别。带文字 执行
我在我的应用程序中使用 System.ComponentModel.BindingList 作为 DataGridView.DataSource。该列表非常大,需要几秒钟才能绘制到 DataGridV
我想知道用户在 Android 中选择的默认键盘。我知道我可以使用 InputMethodManager 访问已启用的输入法列表,但我想知道用户当前使用的是哪一个。 到目前为止,我已经尝试获取当前的输
我是一名优秀的程序员,十分优秀!