TString List 를 통 해 시리즈 숫자 를 거꾸로 정렬 합 니 다. - lancerning 의 질문 에 답 합 니 다.

질문 출처:http://www.cnblogs.com/del/archive/2008/04/07/1134178.html#1141173
unit Unit1;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls;

type
  TForm1 = class(TForm)
    Button1: TButton;
    procedure Button1Click(Sender: TObject);
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

{              }
function DescCompareInt(List: TStringList; I1, I2: Integer): Integer;
begin
  I1 := StrToIntDef(List[I1], 0);
  I2 := StrToIntDef(List[I2], 0);
  Result := I2 - I1;
end;

procedure TForm1.Button1Click(Sender: TObject);
var
  List: TStringList;
begin
  List := TStringList.Create;
  List.CommaText := '5,21,4,65,87,1,3';
  List.CustomSort(DescCompareInt); {         }
  ShowMessage(List.Text);          {87 65 21 5 4 3 1}
  List.Free;
end;

end.

 
 
 
 
 

 

 
  
또한 다른 데이터 에 대응 하 는 문 제 는 TStringList 의 Names 와 ValueFromIndex 속성 으로 해결 할 수 있 고 케이스 문 구 를 사용 하 는 것 도 추출 할 수 있 습 니 다.

좋은 웹페이지 즐겨찾기