Q
qiuyan81
Unregistered / Unconfirmed
GUEST, unregistred user!
function Test1(a,b: integer): integer;
begin
result := a+ b;
end;
function Test2(a,b: integer): integer;
begin
result := a- b;
end;
有2个这样的函数,现在是想把Test1的地址块替换到Test2里面
让Test1(3,2)=1
能实现这样吗?
begin
result := a+ b;
end;
function Test2(a,b: integer): integer;
begin
result := a- b;
end;
有2个这样的函数,现在是想把Test1的地址块替换到Test2里面
让Test1(3,2)=1
能实现这样吗?