3

我真的很困惑。

// 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。无论我们将执行多少次分配,值都不会改变!为什么不?

4

2 回答 2

16

仅当您分配给接口变量而不是对象变量时,才会修改 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; 
于 2010-10-13T03:32:28.520 回答
3

如果将其分配给类类型变量,编译器不会添加任何引用计数代码。refcount 甚至从未设置为 1,更不用说 2。

如果您声明c1and c2 asIInterface而不是 ,您将看到预期的行为TTestClass

于 2010-10-13T03:30:36.903 回答