为什么我的Delphi对象上没有调用_AddRef和_Release?

我真的很困惑.
// 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;

它应该显示1,但它显示0.无论我们将执行多少任务,价值都不会改变!为什么不?

解决方法

只有在分配给接口变量而不是对象变量时才会修改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,0); // just to see the value 
    //Now it DOES show Refcount = 1
end;

相关文章

 从网上看到《Delphi API HOOK完全说明》这篇文章,基本上都...
  从网上看到《Delphi API HOOK完全说明》这篇文章,基本上...
ffmpeg 是一套强大的开源的多媒体库 一般都是用 c/c+&#x...
32位CPU所含有的寄存器有:4个数据寄存器(EAX、EBX、ECX和ED...
1 mov dst, src dst是目的操作数,src是源操作数,指令实现的...