作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我真的很困惑。
// initial class
type
TTestClass =
class( TInterfacedObject)
end;
{...}
// test procedure
procedure testMF();
var c1, c2 : TTestClass;
begin
c1 := TTestClass.Create(); // create, addref
c2 := c1; // addref
c1 := nil; // refcount - 1
MessageBox( 0, pchar( inttostr( c2.refcount)), '', 0); // just to see the value
end;
最佳答案
仅当您分配给接口(interface)变量而不是对象变量时,才会修改 Refcount。
procedure testMF();
var c1, c2 : TTestClass;
Intf1, Intf2 : IUnknown;
begin
c1 := TTestClass.Create(); // create, does NOT addref
c2 := c1; // does NOT addref
Intf1 := C2; //Here it does addref
Intf2 := C1; //Here, it does AddRef again
c1 := nil; // Does NOT refcount - 1
Intf2 := nil; //Does refcount -1
MessageBox( 0, pchar( inttostr( c2.refcount)), '', 0); // just to see the value
//Now it DOES show Refcount = 1
end;
关于delphi - 为什么我的 Delphi 对象没有调用 _AddRef 和 _Release?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3920470/
我使用 Windows shell 枚举控制面板中的项目并在 memo 中添加项目名称,最终发布 IShellFolder 和 PITEMIDLIST 但出现错误。 代码: procedure TFo
在 Delphi 中使用接口(interface)并覆盖引用计数时,可以绕过 Delphi 在接口(interface)达到引用计数为零时进行的_Release 调用。 但是 - 当混合类和接口(in
我真的很困惑。 // initial class type TTestClass = class( TInterfacedObject) end; {...}
(德尔福 XE2 更新 4) 我正在尝试获取一个继承的大型 Microsoft Word OLE 自动化单元(基于早期绑定(bind) TWordApplication 和来自 WordXP/Word
我是一名优秀的程序员,十分优秀!