比如我要写一个函数,传递的参数可能是整形也可能是字符形。function MyFun(i:Integer):Boolean;
begin
  Result:=True;
end;function MyFun(s:String):Boolean;
begin
  Result:=False;
end;在实际的使用过程中,可以MyFun(100),也可以MyFun('abc'),能这样实现吗?