как работает поиск имен.
type
IIntf = interface
function GetStr: string;
end;
IChild = interface(IIntf)
end;
IOtherIntf = interface
function GetStr: string;
end;
TGrandFather = class(TInterfacedObject, IOtherIntf) // если убрать IOtherIntf, то код не скомпилируется. А так - компилируется
public
function GetStr: string;
end;
TFather = class(TGrandFather)
public
function GetStr: Integer;
end;
TChild = class(TFather, IChild)
end;
вот какое отношение IOtherIntf имеет в IIntf/IChild ?
Стикер
Стикер
GUID ГДЕ? Ctrl+K+G С этого начни. Интерфейс без гуида может быть, но только 1.
Да сколько угодно может быть. Но тайпкаст и сравнения типов работать не будут, да. Они в простых случаях и не нужны.
В его случае, тогда сигнатуры должны быть разными.
добавил. Ничего не изменилось.
Не верю я тебе. type IIntf = interface [Guid] function GetStr: string; end; IChild = interface(IIntf) [Guid] end; IOtherIntf = interface [Guid] function GetStr: string; end; TGrandFather = class(TInterfacedObject, IIntf) protected function GetStr: string; end; TFather = class(TGrandFather) protected function GetStr: Integer; end; TChild = class(TFather, IChild) end;
Вот этот код у тебя компилируется ?? program Project3; {$ifdef fpc}{$mode delphi}{$endif} {$apptype console} type IIntf = interface ['{11D494B2-C7D6-40E5-833D-16401F52A0C5}'] function GetStr: string; end; IChild = interface(IIntf) ['{70E1622E-456C-40BF-8586-7CCAB686AED5}'] end; IOtherIntf = interface ['{D6B93144-6D62-4845-A123-907159301CCE}'] function GetStr: string; end; TGrandFather = class(TInterfacedObject) public function GetStr: string; end; TFather = class(TGrandFather) public function GetStr: Integer; end; TChild = class(TFather, IChild) end; { TGrandFather } function TGrandFather.GetStr: string; begin Result := 'TGrandFather.GetStr'; end; { TFather } function TFather.GetStr: Integer; begin Result := 0; end; begin WriteLn('OK'); end.
Не скомпилируется, там ошибка
Обсуждают сегодня