码迷,mamicode.com
首页 > 其他好文 > 详细

全局函数的Result一定要每次都初始化,否则上次的结果会被保持

时间:2015-10-28 01:09:40      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:

测试半天,原来是因为这个原因。下面例子中,Result:=‘‘必须写,否则其结果会被累计,真是昏倒!!

function MyPaths(tache: IXMLTaskType) : String;
var
    i: integer;
begin
    result := ‘‘;
    for i := 0 to tache.paths.Count - 1 do
    begin
       if tache.paths.path[i].folder<>‘‘ then
            result := Result + tache.paths.path[i].folder+#13;
    end;
end;

 

全局函数的Result一定要每次都初始化,否则上次的结果会被保持

标签:

原文地址:http://www.cnblogs.com/findumars/p/4915984.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!