亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? test.pas

?? DCU2PAS非常不錯的破解控件程序,一定要嘗試一下啊!
?? PAS
?? 第 1 頁 / 共 2 頁
字號:
unit test;

interface
uses
  Windows, SysUtils;
  
const
  //Integer consts testing
  cInt1 = -$ffffffffffffffff;
  cInt2 = -$fffffffffffffffe;
  cInt3 = -$8000000000000001;
  //cInt4 = -$8000000000000000;  //Overflow in compile time in D6
  cInt4 = -$7fffffffffffffff - 1;
  cInt5 = -$7fffffffffffffff;
  cInt6 = -$7ffffffffffffffe;
  cInt7 = -$100000001;
  cInt8 = -$100000000;
  //cInt9 = -$ffffffff; //Overflow in compile time in D7
  //cInt10 = -$fffffffe; //Overflow in compile time in D7
  //cInt11 = -$80000001; //Overflow in compile time in D7
  //cInt12 = -$80000000; //Overflow in compile time in D7
  cInt13 = -$7fffffff;
  cInt14 = -$7ffffffe;
  cInt16 = -$10001;
  cInt17 = -$10000;
  cInt18 = -$ffff;
  cInt19 = -$fffe;
  cInt20 = -$8001;
  cInt21 = -$8000;
  cInt22 = -$7fff;
  cInt23 = -$7ffe;
  cInt24 = -$101;
  cInt25 = -$100;
  cInt26 = -$ff;
  cInt27 = -$fe;
  cInt28 = -$81;
  cInt29 = -$80;
  cInt30 = -$7f;
  cInt31 = -$7e;
  cInt32 = -$1;
  cInt33 = -1;
  cInt34 = 0;
  cInt35 = 1;
  cInt36 = $7e;
  cInt37 = $7f;
  cInt38 = $80;
  cInt39 = $81;
  cInt41 = $fe;
  cInt42 = $ff;
  cInt43 = $100;
  cInt44 = $7ffe;
  cInt45 = $7fff;
  cInt46 = $8000;
  cInt47 = $8001;
  cInt48 = $fffe;
  cInt49 = $ffff;
  cInt50 = $10000;
  cInt51 = $10001;
  cInt52 = $7ffffffe;
  cInt53 = $7fffffff;
  cInt54 = $80000000;
  cInt55 = $80000001;
  cInt56 = $fffffffe;
  cInt57 = $ffffffff;
  cInt58 = $100000000;
  cInt59 = $100000001;
  cInt60 = $7ffffffffffffffe;
  cInt61 = $7fffffffffffffff;
  cInt62 = $8000000000000000;
  cInt63 = $8000000000000001;
  cInt64 = $fffffffffffffffe;
  cInt65 = $ffffffffffffffff;

  //Char consts testing
  cC1 = 't';
  cC2 = '''';
  cC3 = #13;
  cC4 = #255;

  cC5 = Char(2);
  cC6 = Char(6);

  cByte = Byte(127);
  cShortint = Shortint(-100);
  cWord = Word(100);
  cSmallint = Smallint(-128);
  cInteger = Integer(-1000);
  cCardinal = Cardinal(10000);
  cInt64_ = Int64(-10000);
  cWideChar = WideChar('w');

  cSet1 = [1,2,3];
  cSet2 = ['a'..'z'];

  //String consts testing
  cStr1 = 'Hi, how are you? My Email is: soarowl@yeah.net. Good luck to you!';
  cStr2 = 'I''m Nengwen Zhuo. My homepages are: http://soarowl.uhome.net, http://soarowl.0catch.com, http://www.websamba.com/soarowl';
  cStr3 = #13#10;
  cStr4 = '我是卓能文,來自中國大陸';
  cStr5 = #13#10'Hello'#13#10'every one'#13#10'來自卓能文的問候';

  CWideStr = WideString('This is WideString const');

  //Float consts testing
  cFloat1 = -123456789.0;
  cFloat2 = -1.23456789;
  cFloat3 = -1.23456789e-1000;
  cFloat4 = -1.23456789e-100;
  cFloat5 = -1.23456789e-10;
  cFloat6 = -1.23456789e-0;
  cFloat7 = -1.23456789e0;
  cFloat8 = -1.23456789e10;
  cFloat9 = -1.23456789e100;
  cFloat10 = -1.23456789e1000;
  cFloat11 = 1.23456789e-1000;
  cFloat12 = 1.23456789e-100;
  cFloat13 = 1.23456789e-10;
  cFloat14 = 1.23456789e-0;
  cFloat15 = 1.23456789e0;
  cFloat16 = 1.23456789e10;
  cFloat17 = 1.23456789e100;
  cFloat18 = 1.23456789e1000;
  cFloat19 = 123456789.0;
  cFloat20 = pi;

  //Boolean
  cBool = true;
  
  //pointer
  cPointer = nil;

  //Variable consts testing
  vcByte1: Byte = 0;
  vcByte2: Byte = 127;
  vcByte3: Byte = 128;
  vcByte4: Byte = 255;

  vcShortint1: Shortint = -128;
  vcShortint2: Shortint = 0;
  vcShortint3: Shortint = 127;

  vcWord1: Word = 0;
  vcWord2: Word = 32767;
  vcWord3: Word = 32768;
  vcWord4: Word = 65535;

  vcSmallint1: Smallint = -32768;
  vcSmallint2: Smallint = -16384;
  vcSmallint3: Smallint = 16384;
  vcSmallint4: Smallint = -32767;

  vcInteger1: Integer = -MaxInt - 1;
  vcInteger2: Integer = MaxInt;

  vcCardinal1: Cardinal = 0;
  vcCardinal2: Cardinal = $ffffffff;

  vcInt641: Int64 = -$7fffffffffffffff - 1;
  vcInt642: Int64 = $7fffffffffffffff;

  vcComp1: Comp = $8000000000000001;
  vcComp2: Comp = $7fffffffffffffff;

  vcC1: Char = 't';
  vcC2: Char = #0;
  vcC3: Char = '''';

  vcWideC1: WideChar = 't';
  vcWideC2: WideChar = #0;
  vcWideC3: WideChar = '''';

  vcStr: String = 'Test string'''#0'abc';
  vcAnsiStr: AnsiString = 'Test AnsiString'''#0'abc';
  vcWideStr: WideString = 'Test WideString'''#0'abc';

  vcShortStr1: ShortString = 'Test ShortString'''#0'abc';
  vcShortStr2: String[50] = 'Test String[50]'''#0'abc';

  //!!! You can declare PChar likes following, but the result will be 'Test PChar'''
  vcPChar: PChar = 'Test PChar'''#0'abc';
  //!!! The result will be 'Test PAnsiChar'''
  vcPAnsiChar: PAnsiChar = 'Test PAnsiChar'''#0'abc';
  //!!! The result will be 'Test PWideChar'''
  vcPWideChar: PWideChar = 'Test PWideChar'''#0'abc';

  vcCharRange: 'a'..'z' = 'x';

  vcPChar2Char1: PChar = @vcCharRange;
  vcPChar2Char2: PChar = @vcPChar;

//type imports const testing
type
  MyString = String;
  MyTypeString = type String;
  MyTypeExtended = type Extended;
const
  vcMyStr: MyString = 'This is string type redclaration test';
  vcMyTypeStr: MyTypeString = 'This is string type redclaration test with "type" keyword';
  vcMyExt: MyTypeExtended = 123456;

  //array const testing
  vcBoolStrs1: array [Boolean] of String = ('false1','true1');
  vcBoolStrs2: array [false..true] of String = ('false2','true2');
  vcBoolStrs3: array [0..1] of String = ('false3','true3');
  vcStrs4: array[0..2,2..4] of String =
  (
    ('test1','test2','test3'),
    ('test4','test5','test6'),
    ('test7','','test9')
  );
  vcMyStrs: array [1..4] of MyString = ('str1','','str3','str4');
  vcMyTypeStrs: array [1..4] of MyTypeString = ('type str1','','type str3','type str4');
  vcWideStrs: array[1..4] of WideString = ('WideStr1','','WideStr3','WideStr4');
  vcPChars: array[0..2] of PChar = ('PChar1','','PChar3');
  vcPWideChars: array[0..2] of PWideChar = ('PWideChar1','','PWideChar3');

  vcIntArray1: array[-5..5] of Integer = (1,2,3,4,5,6,7,8,9,10,11);
  vcIntArray2: array[1..3,4..6] of Integer =
  (
    (1,2,3),
    (4,5,6),
    (7,8,9)
  );

type
  TDateRec = record
    Year: Integer;
    Month: (Jan, Feb, Mar, Apr, May, Jun,
            Jul, Aug, Sep, Oct, Nov, Dec);
    Day: 1..31;
  end;

  TEmployee = record
    FirstName, LastName: string[40];
    BirthDate: TDateTime;
    case Salaried: Boolean of
      True: (AnnualSalary: Currency);
      False: (HourlyWage: Currency);
  end;

  TPerson = record
    FirstName, LastName: string[40];
    BirthDate: TDateTime;
    case Citizen: Boolean of
      True: (Birthplace: string[40]);
      False: (Country: string[20];
              EntryPort: string[20];
              EntryDate, ExitDate: TDateTime);
  end;

  TShapeList = (Rectangle, Triangle, Circle, Ellipse, Other);
  TFigure = record
    case TShapeList of
      Rectangle: (Height, Width: Real);
      Triangle: (Side1, Side2, Angle: Real);
      Circle: (Radius: Real);
      Ellipse, Other: ();
  end;

  TMyRecord1 = record
    I1: Integer;
    I2: String;
    I3: Char;
    I4: Extended;
    I5: PChar;
    I6: ShortString;
    I7: PWideChar;
    I8: WideString;
  end;

  TMyRecord2 = packed record
    I1: Integer;
    I2: String;
    I3: Char;
    I4: Extended;
    I5: PChar;
    I6: ShortString;
    I7: PWideChar;
    I8: WideString;
  end;

const
  //record testing
  vcRec1: TMyRecord1 = (I1:1; I2:'test'; I3:'C'; I4:pi; I5:'abc';I6: 'xyz'; I7:'123'; I8:'WideString');
  vcRec2: TMyRecord2 = (I1:1; I2:'test'; I3:'C'; I4:pi; I5:'abc';I6: 'xyz'; I7:'123'; I8:'WideString');
  //Refence Variant record testing
  vcRec3: TVarRec = (VInteger: $12345678; VType: vtInteger);

  //vcRecArray: packed array[0..1] of TMyRecord1 =
  vcRecArray: array[0..1] of TMyRecord2 =
  (
    (I1:1; I2:'test1'; I3:'C'; I4:pi; I5:'abc1';I6: 'xyz1'; I7:'123'; I8:'WideString1'),
    (I1:2; I2:'test2'; I3:'D'; I4:pi; I5:'abc2';I6: 'xyz2'; I7:'456'; I8:'WideString2')
  );

//Enum testing
type
  TColors = (Red, Blue, Green, Yellow, Orange, Purple, White, Black);
  Size = (Small = 5, Medium = 10, Large = Small + Medium);
  SomeEnum = (e1, e2, e3 = 1);

const
  //set enum testing
  cSetEnum = [Red,Green,Yellow];
  //enum const testing
  cenum: TColors = Red;
  //array enum const testing
  cArrayEnum1: array[0..2] of TColors = (Red, Blue,Green);
  cArrayEnum2: array[SomeEnum] of TColors = (Red, Yellow);
  
type
  //subrange testing
  TMyColors = Green..White;
  TMySize = Medium..Large;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品视频一二| 精品国产91洋老外米糕| 国产成人鲁色资源国产91色综 | 岛国av在线一区| 国产乱码精品一区二区三区忘忧草| 久久精品国产999大香线蕉| 日韩国产欧美视频| 久久精品国产一区二区三 | 亚洲六月丁香色婷婷综合久久| 国产精品丝袜久久久久久app| 中文一区二区完整视频在线观看| 中文一区二区完整视频在线观看| 国产精品久久久久久福利一牛影视 | 欧美日韩激情一区二区| 欧美一区二区三区成人| 精品粉嫩超白一线天av| 国产精品久久久久一区二区三区 | 色婷婷av一区二区三区之一色屋| 91蜜桃在线观看| 欧美三级午夜理伦三级中视频| 欧美日韩aaa| 久久精品亚洲乱码伦伦中文 | 麻豆国产精品一区二区三区 | 丝袜亚洲另类丝袜在线| 激情五月婷婷综合| 成人h精品动漫一区二区三区| 91在线国产观看| 日韩美一区二区三区| 中文字幕+乱码+中文字幕一区| 亚洲黄色小说网站| 九九精品一区二区| 一本色道久久综合精品竹菊 | 国内国产精品久久| 91蜜桃免费观看视频| 在线综合视频播放| 中文字幕亚洲综合久久菠萝蜜| 亚洲一区视频在线观看视频| 国产一区二区精品在线观看| 色国产精品一区在线观看| 精品免费视频.| 亚洲一区中文日韩| 成人一区二区三区视频在线观看 | 黑人巨大精品欧美一区| 色94色欧美sute亚洲线路一久 | 中文字幕五月欧美| 麻豆精品新av中文字幕| 欧美综合天天夜夜久久| 国产精品人妖ts系列视频| 日本一不卡视频| 色哟哟一区二区在线观看| 日韩免费一区二区| 一区二区三区在线观看视频 | 99精品国产99久久久久久白柏| 日韩三级中文字幕| 亚洲一区视频在线观看视频| 成人av在线网| 久久九九99视频| 久久国产尿小便嘘嘘尿| 在线观看av一区| 亚洲欧美日韩精品久久久久| 激情综合色播激情啊| 欧美一区二区私人影院日本| 亚洲专区一二三| 99久久er热在这里只有精品15| 久久中文字幕电影| 久久不见久久见免费视频1| 欧美日本一道本| 午夜精彩视频在线观看不卡| 一本久久a久久免费精品不卡| 国产欧美在线观看一区| 国产成人在线视频网址| 久久精品人人做人人综合 | 91麻豆精品国产91久久久久久| 一区二区三区小说| 色噜噜狠狠成人中文综合| 一区二区在线观看免费视频播放| 不卡一区二区三区四区| 国产嫩草影院久久久久| 高清在线不卡av| 国产精品日韩成人| 一本色道亚洲精品aⅴ| 亚洲精品午夜久久久| 欧美午夜精品久久久| 亚洲国产精品嫩草影院| 欧美精品vⅰdeose4hd| 日韩电影在线看| 欧美xxxxxxxxx| 国产一区二区三区四区五区美女| 2019国产精品| av激情亚洲男人天堂| 亚洲精品国产一区二区精华液| 91久久免费观看| 日本大胆欧美人术艺术动态| 日韩一区二区视频在线观看| 久久精品99国产国产精| 国产视频一区二区在线| 色婷婷国产精品| 日本女优在线视频一区二区| 久久一二三国产| 99久久综合狠狠综合久久| 亚洲线精品一区二区三区| 日韩视频123| 99久久精品免费| 日本伊人色综合网| 国产精品成人网| 欧美一级久久久| av中文字幕在线不卡| 日韩精品一级二级 | 在线精品国精品国产尤物884a| 天堂va蜜桃一区二区三区漫画版| 久久五月婷婷丁香社区| 色综合天天性综合| 经典三级在线一区| 亚洲黄色尤物视频| 国产喷白浆一区二区三区| 欧美日韩在线直播| 成人免费视频网站在线观看| 日韩一区精品视频| 国产精品第一页第二页第三页 | 老司机一区二区| 亚洲色图视频网| 精品国产露脸精彩对白| 色噜噜偷拍精品综合在线| 黄色资源网久久资源365| 亚洲激情综合网| 欧美极品少妇xxxxⅹ高跟鞋| 91精品国产综合久久久久久| 91麻豆免费在线观看| 国产精品夜夜嗨| 人人精品人人爱| 亚洲一区av在线| 国产精品妹子av| 精品国产乱码久久久久久蜜臀| 欧美区视频在线观看| 91在线视频播放地址| 成人黄色在线视频| 国产原创一区二区| 久久99精品久久久久婷婷| 亚洲444eee在线观看| 一区二区三区精品久久久| 亚洲国产精品成人综合| 久久免费美女视频| 日韩欧美一级精品久久| 欧美一级生活片| 欧美肥大bbwbbw高潮| 欧美视频一区二| 欧美日精品一区视频| 91论坛在线播放| 91在线视频免费观看| 97久久久精品综合88久久| av中文字幕亚洲| 91亚洲男人天堂| 色拍拍在线精品视频8848| 一本大道综合伊人精品热热| 色综合一个色综合| 欧美性欧美巨大黑白大战| 日本道色综合久久| 欧美日韩亚洲综合一区| 欧美日韩欧美一区二区| 欧美精品xxxxbbbb| 91精品国产综合久久福利| 日韩一级大片在线观看| 精品欧美一区二区久久| 久久久久久亚洲综合影院红桃 | 色欧美乱欧美15图片| 在线亚洲高清视频| 欧美精品日日鲁夜夜添| 日韩欧美亚洲国产精品字幕久久久| 欧美tickling网站挠脚心| 久久久亚洲高清| 亚洲特黄一级片| 丝袜美腿高跟呻吟高潮一区| 国内成人自拍视频| 99久久久精品免费观看国产蜜| 欧美日韩综合在线| 日韩三级伦理片妻子的秘密按摩| 日韩免费看网站| 国产精品精品国产色婷婷| 亚洲一区在线观看视频| 免费在线观看成人| 99re这里只有精品6| 欧美日本一道本| 亚洲国产精品精华液2区45| 亚洲国产日产av| 国产一区二区在线看| 色婷婷综合久久久| 日韩一区二区三区在线| 中文字幕亚洲欧美在线不卡| 视频一区二区不卡| 成人美女在线视频| 91麻豆精品国产91| 亚洲丝袜精品丝袜在线| 另类人妖一区二区av| 播五月开心婷婷综合| 欧美一区二区精品久久911| 国产精品九色蝌蚪自拍| 麻豆成人免费电影| 99国内精品久久| 国产日韩精品一区二区三区| 亚洲成人久久影院|