C
chcw
Unregistered / Unconfirmed
GUEST, unregistred user!
我写的一个重载函数中需要调用父代的函数并用其返回值作为重载函数的返回值:
我写了如下语句:
function 重载函数
begin
....
Result := inherited;
edn;
但是编译时总说inherited有错:incompatible type.
我写了如下语句:
function 重载函数
begin
....
Result := inherited;
edn;
但是编译时总说inherited有错:incompatible type.