怎么取得当前接口的计数的值
  var
    MyObject: TMyObject;
    MyIntf, MyIntf2: IInterface;
  begin
    MyObject := TMyObject.Create;  // 创建 TMyObject 对象
    MyIntf  := MyObject;           // 将接口指向 MyObject 对象
    MyIntf2 := MyIntf;             // 接口指针的赋值
  showmessage(inttostr(PInteger(self+));//=1   ????????????????
  end;