PASSWORD 's Blog

用耳朵去聆听,用心来感受

用户操作
[即时聊天] [发私信] [加为好友]
彭为ID:libra01
58718次访问,排名1813好友0人,关注者0
libra01的文章
原创 63 篇
翻译 0 篇
转载 4 篇
评论 65 篇
彭为的公告

网名:PASSWORLD
QQ:3569555
MSN:pwzyp#msn.com
现工作在上海
最近评论
mldstk:wow power leveling
zhangjiajun1982:建议你看看这篇文章对你会有帮助的 http://www.150it.cn/bianchengwendang/VC/865064948.html
lovevirus:持之以恒,这是最重要的,谢谢主人的金玉良言,呵呵,郁闷时期给我一点鼓舞
dugang:兄弟,钱多的好找,不累的难找
骆归:楼主还行,但我想没有这么难,不想多说,帮你顶.
文章分类
收藏
    相册
    爱的足迹
    博客图片
    丑男形象
    Delphi
    ★卢培培★
    Angus Johnson's Delphi Components
    CrazyCock专栏
    flier_lu(有价值的文章)
    Think in Patterns 中文
    午夜听风的代码人生
    抉择不悔's blog
    梁甫吟
    超强的Delphi Tips
    风中之歌
    友情链接
    ===天地弦===
    DigJim 的博客(RSS)
    E步·软件资讯
    hkbarton-delphi
    为艺术为技术(RSS)
    孙辉的BLOG
    张硕(CathyEagle)的BLOG
    成片的大树
    我的另外一个生活博客
    编程手札(RSS)
    (RSS)
    存档
    软件项目交易
    订阅我的博客
    XML聚合  FeedSky
    订阅到鲜果
    订阅到Google
    订阅到抓虾
    订阅到BlogLines
    订阅到Yahoo
    订阅到GouGou
    订阅到飞鸽
    订阅到Rojo
    订阅到newsgator
    订阅到netvibes

    原创 关于TREEVIEW的一些问题收藏

    新一篇: 在EXE后面加一些额外的数据 | 旧一篇: 两层还是三层?

    TREEVIEW的一些惯用法。看看是不是能加快你的速度呢?

    TTreeview troubles.http://angusj.com/delphitips/treeview.php

    24 Jan 2002
    Having used Delphi since Delphi 1, I had come to assume that using array properties was always very fast (ie constant irrespective of the size of the array - O(1) using Big-Oh notation). The TList.Items[] and the TStrings.Strings[] properties are good examples of this fast array access.

    For readers who are wondering why they've never seen the Items property of TList or the Strings property of TStrings, Object Pascal allows an array property to be declared as the 'default' array for its class. This allows the array identifier to be omitted when accessing an object's default array. Hence MyList.Items[0] is equivalent to MyList[0], MyStringlist.Strings[0] is equivalent to MyStringlist[0] and MyTreeview.Items.Item[0] is equivalent to MyTreeview.Items[0]. (See "Default (directive)" in Delphi's online help for more info.)

    Anyhow, assuming that object arrays will return in constant time is a mistake. The TTreeview.Items.Item[] property recently tripped me up as it turns out to have O(n) performance (and a cursory inspection of the TTreeNodes.GetNodeFromIndex() function in the ComCtrls unit reveals why). The TTreeNode.AbsoluteIndex property also has O(n) performance and should be avoided if possible (eg by incrementing your own index counter when enumerating a range of treeview items).

    Below is a trivial demonstration of the problem I encountered by assuming TTreeview.Items.Item 's performance.

    [ To run the code below requires placing a treeview control and two buttons on the main form of a new project and implementing the following methods... ]

    Code snippet ...
    
    procedure TForm1.FormCreate(Sender: TObject);
    var
      i: integer;
    begin
      //populate the treeview control...
      with treeview1.items do
      begin
        beginupdate;
        for i := 1 to 2000 do
          AddChild(nil, inttostr(i));
        endupdate;
      end;
    end;
    
    procedure TForm1.Button1Click(Sender: TObject);
    var
      i: integer;
    begin
      //watch how this slows down as the loop proceeds...
      //have a cup of tea handy if you have a slow processor :)
      with treeview1 do
        for i := 0 to items.count-1 do
        begin
          caption := items[i].Text;
        end;
    end;
    
    procedure TForm1.Button2Click(Sender: TObject);
    var
      currentNode: TTreeNode;
    begin
      //by avoiding the relatively slow Items.Item[] property
      //accessing individual treeview nodes can be very fast...
      with treeview1 do
      begin
        currentNode := items.GetFirstNode;
        while assigned(currentNode) do
        begin
          caption := currentNode.Text;
          currentNode := currentNode.GetNext;
        end;
      end;
    end;
    

    发表于 @ 2005年12月31日 15:32:00|评论(loading...)|编辑

    新一篇: 在EXE后面加一些额外的数据 | 旧一篇: 两层还是三层?

    评论:没有评论。

    发表评论  


    当前用户设置只有注册用户才能发表评论。如果你没有登录,请点击登录
    Csdn Blog version 3.1a
    Copyright © 彭为