A
Azalea
Unregistered / Unconfirmed
GUEST, unregistred user!
function f1
var
n1: integer;
str1, str2, str3, str4: string;
begin
...
str2 := f2(str1);
str3 := f2(str1);
str4 := f2(str1);
end;
function f2(str: string): integer;
begin
...
end;
函数f2中如何更改f1的变量str1的值(即f2的参数)?
var
n1: integer;
str1, str2, str3, str4: string;
begin
...
str2 := f2(str1);
str3 := f2(str1);
str4 := f2(str1);
end;
function f2(str: string): integer;
begin
...
end;
函数f2中如何更改f1的变量str1的值(即f2的参数)?