Delphi函數(shù)大全.doc

Delphi函數(shù)大全.doc

ID:31830636

大?。?32.00 KB

頁(yè)數(shù):53頁(yè)

時(shí)間:2019-01-20

Delphi函數(shù)大全.doc_第1頁(yè)
Delphi函數(shù)大全.doc_第2頁(yè)
Delphi函數(shù)大全.doc_第3頁(yè)
Delphi函數(shù)大全.doc_第4頁(yè)
Delphi函數(shù)大全.doc_第5頁(yè)
資源描述:

《Delphi函數(shù)大全.doc》由會(huì)員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在教育資源-天天文庫(kù)。

1、Delphi函數(shù)大全首部functionLanguages:TLanguages;$[SysUtils.pas功能返回系統(tǒng)語(yǔ)言對(duì)象說(shuō)明通過(guò)此函數(shù)可以得到系統(tǒng)的語(yǔ)言環(huán)境參考typeSysUtils.TLanguages例子///////BeginLanguagesprocedureTForm1.Button1Click(Sender:TObject);varI:Integer;beginMemo1.Clear;forI:=0toLanguages.Count-1doMemo1.Lines.Add(Languages.Name[I]);end;/////

2、//EndLanguages━━━━━━━━━━━━━━━━━━━━━首部functionAllocMem(Size:Cardinal):Pointer;$[SysUtils.pas功能返回一個(gè)指定大小Size的內(nèi)存塊說(shuō)明配合用FreeMem釋放資源參考functionSystem.GetMem例子///////BeginAllocMemprocedureTForm1.Button1Click(Sender:TObject);varI:PInteger;beginI:=AllocMem(SizeOf(Integer));I^:=100;Edit1.T

3、ext:=IntToStr(I^);FreeMem(I,SizeOf(Integer));end;///////EndAllocMem━━━━━━━━━━━━━━━━━━━━━首部procedureAddExitProc(Proc:TProcedure);$[SysUtils.pas功能添加一個(gè)退出處理的過(guò)程說(shuō)明建議用finalization部分取代參考例子////////BeginAddExitProcusesShellApi;53procedureExitProc;beginShellExecute(0,'Open','Calc.ex

4、e',nil,nil,SW_SHOW);end;procedureTForm1.Button1Click(Sender:TObject);beginAddExitProc(ExitProc);end;////////EndAddExitProc━━━━━━━━━━━━━━━━━━━━━首部functionNewStr(constS:string):PString;deprecated;$[SysUtils.pas功能返回一個(gè)新的字符串指針地址說(shuō)明字符串S為空時(shí)返回NullStr參考procedureSystem.New例子////////BeginN

5、ewStr,DisposeStrprocedureTForm1.Button1Click(Sender:TObject);varP:PString;beginP:=NewStr(Edit1.Text);Edit2.Text:=P^;DisposeStr(P);end;////////EndNewStr,DisposeStr━━━━━━━━━━━━━━━━━━━━━首部procedureDisposeStr(P:PString);deprecated;$[SysUtils.pas功能釋放字符串指針P資源說(shuō)明配合函數(shù)NewStr使用參考procedure

6、System.Dispose例子<如上參見(jiàn),如下參見(jiàn)>━━━━━━━━━━━━━━━━━━━━━首部procedureAssignStr(varP:PString;constS:string);deprecated;$[SysUtils.pas功能將字符串S更新給字符串指針P說(shuō)明更新值時(shí)會(huì)釋放以前字符串指針的資源參考functionSysUtils.NewStr;functionSysUtils.DisposeStr例子////////BeginAssignStrprocedureTForm1.Button1Click(Sender:TObject)

7、;varP:PString;beginP:=nil;53AssignStr(P,Edit1.Text);Edit2.Text:=P^;DisposeStr(P);end;////////EndAssignStr━━━━━━━━━━━━━━━━━━━━━首部procedureAppendStr(varDest:string;constS:string);deprecated;$[SysUtils.pas功能在字符串Dest后追加字符串S說(shuō)明相當(dāng)于Dest:=Dest+S;Delphi6已經(jīng)不建議使用參考例子////////BeginAppe

8、ndStrprocedureTForm1.Button1Click(Sender:TObject);varS

當(dāng)前文檔最多預(yù)覽五頁(yè),下載文檔查看全文

此文檔下載收益歸作者所有

當(dāng)前文檔最多預(yù)覽五頁(yè),下載文檔查看全文
溫馨提示:
1. 部分包含數(shù)學(xué)公式或PPT動(dòng)畫(huà)的文件,查看預(yù)覽時(shí)可能會(huì)顯示錯(cuò)亂或異常,文件下載后無(wú)此問(wèn)題,請(qǐng)放心下載。
2. 本文檔由用戶上傳,版權(quán)歸屬用戶,天天文庫(kù)負(fù)責(zé)整理代發(fā)布。如果您對(duì)本文檔版權(quán)有爭(zhēng)議請(qǐng)及時(shí)聯(lián)系客服。
3. 下載前請(qǐng)仔細(xì)閱讀文檔內(nèi)容,確認(rèn)文檔內(nèi)容符合您的需求后進(jìn)行下載,若出現(xiàn)內(nèi)容與標(biāo)題不符可向本站投訴處理。
4. 下載文檔時(shí)可能由于網(wǎng)絡(luò)波動(dòng)等原因無(wú)法下載或下載錯(cuò)誤,付費(fèi)完成后未能成功下載的用戶請(qǐng)聯(lián)系客服處理。