网上收集了一点东西

TOBJECTLIST里,有自带的排序功能

TLIST,TSTRINGLIST也有,MS是一样的

SORT里有一个参数: Compare:TListSortCompare

那我们先了解一下 TListSortCompare type

HELP原文:TListSortCompare is the type for callbacks that compare two items in a list.

即 TListSortCompare  是一个比较两个列表项的的回调类型

不知道这么翻译行不行,但意思就是返回一个值来表示LIST中两项的大小

定义:(这个传入的是两项的指针)

type TListSortCompare = function (Item1, Item2: Pointer): Integer;

Value Description

> 0 (positive) Item1 is less than Item2
   0 Item1 is equal to Item2
< 0 (negative) Item1 is greater than Item2

于是我们可以定义一个比较函数去定义自己的比较方式

function (Item1, Item2: Pointer): Integer

对于delphi初学者 不懂 item1 和 item2 是什么意思

自己的理解,这是一个对象的指针,就是TOBJECTLIST自己

好比类中套了TOBJECTLIST 那么 怎么来写这个函数呢

网上的高手很厉害,一般不会回答傻问题,可惜我们小白不懂啊!

上代码

function CompareNames(Item1, Item2: Pointer): Integer;
begin
result := Integer(CompareValue(TThingItem(Item1).indexShow,TThingItem(Item2).indexShow));
end;

CompareValue 记得U一下Math

这个函数头一回用 贴上解释吧

7、CompareValue

     function CompareValue (const A, B: Extended; Epsilon: Extended = 0): TValueRelationship; overload;
     function CompareValue (const A, B: Double; Epsilon: Double = 0): TValueRelationship; overload;
     function CompareValue (const A, B: Single; Epsilon: Single = 0): TValueRelationship; overload;
     function CompareValue (const A, B: Integer): TValueRelationship; overload;
     function CompareValue (const A, B: Int64): TValueRelationship; overload;

uses Math

比较两个值之间的关系

如 A 小于 B 则返回  -1  ,如果相等则为 0 ,如果 A>B 则返回为 1;

好了,上面TThingItem是一个对象,Item1是要表示的TOBJECTLIST,至少我是这么理解的

这里的作用是比较indexshow的大小来达到从小到大的排序!

函数直接添加,无需申明

下面直接调用!排序OK

self.tolWPXM.Sort(@CompareNames);

贴段别人弄好的测试代码开始不懂,后来完全明白是什么了

unit Unit1;

 
interface
 
uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls, Math;
 
type
  P_MissInfo = ^MissInfo;
  MissInfo = record
    Missqty: integer;
    MissRate: Double;
  end;
  TForm1 = class(TForm)
    Button1: TButton;
    procedure Button1Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;
 
var
  Form1: TForm1;
 
implementation
 
{$R *.dfm}
 
function CompareNames(Item1, Item2: Pointer): Integer;
begin
  result := Integer(CompareValue(P_MissInfo(Item1).MissRate, P_MissInfo(Item2).MissRate));
end;
 
procedure TForm1.Button1Click(Sender: TObject);
var
  list: Tlist;
  PMissInfo: P_MissInfo;
begin
  list := Tlist.create;
  New(PMissInfo);
  PMissInfo.Missqty:= 10;
  PMissInfo.MissRate:= 12.56;
  list.Add(PMissInfo);
 
  New(PMissInfo);
  PMissInfo.Missqty:= 12;
  PMissInfo.MissRate:= 12.8;
  list.Add(PMissInfo);
 
  New(PMissInfo);
  PMissInfo.Missqty:= 9;
  PMissInfo.MissRate:= 11.56;
  list.Add(PMissInfo);
 
  list.Sort(@CompareNames);
  Showmessage(IntToStr(list.Count));
  showmessage(FloatToStr(P_MissInfo(list.Items[0]).MissRate));
  showmessage(FloatToStr(P_MissInfo(list.Items[1]).MissRate));
  showmessage(FloatToStr(P_MissInfo(list.Items[2]).MissRate));
end;
 
end.

最新文章

  1. JavaScript原型
  2. Java学习之路:不走弯路,就是捷径
  3. Unity3D绑定button监听事件
  4. Normalize.css 与 reset.css
  5. archlinux 内核编译笔记
  6. Struts2_ValueStack,OGNL详解
  7. Android菜鸟的成长笔记(17)—— 再看Android中的Unbounded Service
  8. [翻译]MEAN.IO与MEAN.JS的前世今生
  9. PCB行业ERP解决方案
  10. [原创]Nexus5 内核编译烧录过程记录
  11. Asp.Net Core 2.0 之旅---在Ubuntu上部署WEB应用程序
  12. oracle DML语句
  13. Scrapy Spider MiddleWare 设置
  14. 数据库MySQL5.7.21win64位安装配置
  15. Python 面试题_未完
  16. 正睿 2019 省选附加赛 Day10
  17. HDU 1250
  18. 课程四(Convolutional Neural Networks),第二 周(Deep convolutional models: case studies) —— 0.Learning Goals
  19. Android的onLayout、layout方法讲解
  20. python分割txt文件

热门文章

  1. [Elm] Installing and setting up Elm
  2. ajax实现注册用户名时动态显示用户名是否已经被注册(1、ajax可以实现我们常见的注册用户名动态判断)(2、jquery里面的ajax也是类似我们这样封装了的函数)
  3. 应用:udp聊天器
  4. Net Core 下 Newtonsoft.Json 转换字符串 null 替换成string.Empty
  5. mysql官网下载linux版本安装包
  6. 代码包结构分析工具JDepend的使用方法
  7. [Angular] Difference between ngAfterViewInit and ngAfterContentInit
  8. html常用属性border-radius、linear-gradient怎么使用
  9. hadoop 3.x 集群/单个节点的启动与停止
  10. Cocos2d-x 3.1.1 Lua演示样例 ActionManagerTest(动作管理)