参照カウントのないインターフェイスを実装するクラスが必要です。私は次のことをしました:
IMyInterface = interface(IInterface)
['{B84904DF-9E8A-46E0-98E4-498BF03C2819}']
procedure InterfaceMethod;
end;
TMyClass = class(TObject, IMyInterface)
protected
function _AddRef: Integer;stdcall;
function _Release: Integer;stdcall;
function QueryInterface(const IID: TGUID; out Obj): HResult;stdcall;
public
procedure InterfaceMethod;
end;
procedure TMyClass.InterfaceMethod;
begin
ShowMessage('The Method');
end;
function TMyClass.QueryInterface(const IID: TGUID; out Obj): HResult;
begin
if GetInterface(IID, Obj) then
Result := 0
else
Result := E_NOINTERFACE;
end;
function TMyClass._AddRef: Integer;
begin
Result := -1;
end;
function TMyClass._Release: Integer;
begin
Result := -1;
end;
参照カウントの欠如は正常に機能します。しかし、私の懸念は、演算子TMyClass
をIMyInterface
使用してキャストできないことです。as
var
MyI: IMyInterface;
begin
MyI := TMyClass.Create as IMyInterface;
私は与えられています
[DCC エラー] E2015 このオペランド型には適用できない演算子
TMyClass
から派生すると問題はなくなりますTInterfacedObject
-つまり、コンパイラエラーなしでそのようなキャストを行うことができます。明らかに、TInterfacedObject を基底クラスとして使用したくありません。クラス参照がカウントされるからです。そのようなキャストが許可されないのはなぜですか? また、それを回避するにはどうすればよいですか?