C++ Builder VCL庫函數簡介

來源:互聯網
上載者:User
一.BORLAND C++ BUILDER VCL的記憶體管理函數

  1. AllocMem
  在隊中分配指定位元組的記憶體塊,並將分配的每一個位元組初始化為 0.函數原型如下:
  void * __fastcall AllocMem(Cardinal Size);

  2. SysFreeMem
  釋放所指定的記憶體塊.函數原型如下:
  int __fastcall SysFreeMem(void * P);

  3. SysReallocMem
  要求重新分配參數Size所指定的記憶體.函數原型如下:
  void * __fastcall SysReallocMem(void * P , int Size);

  二.Borland C++ Builder VCL的檔案操作函數

  1. FileOpen
  開啟指定的檔案,如果返回為正數,表示操作成功,傳回值為檔案控制代碼:如果傳回值為-1,表示操作失敗,函數原型如下:
  int __fastcall FileOpen(const System::AnsiString FileName,int Mode);

  2. FileCreate
  以指定的檔案名稱建立一個新的檔案,如果返回為正數,表示操作成功,傳回值為檔案控制代碼,如果傳回值為-1,表示操作失敗.函數原型如下:
  int __fastcall FileCreate(const System ::AnsiString FileName);

  3. FileRead
  從檔案中讀取指定位元組的資料到緩衝區中,函數返回實際讀取的位元組數,函數原型如下;
  int __fastcall FileRead(int Handle,void *Buffer,int Count);

  4. FileWrite
  將緩衝區的資料寫入到指定的檔案的當前位置中去如果操作成功,函數返回實際寫入的位元組數,如果返回為-1,則表示操作產生錯誤,函數原型如下:
  int __fastcall FileWrite(int Handle,const void *Buffer,int Count);

  5. FileSeek
  調整檔案指標到新的位置,如果操作成功,則返回新的檔案位置,如果操作失敗,則函數返回-1,函數原型如下:
  int __fastcall FileSeek(int Handle,int Offset,int Origin);

  6. FileClose
  關閉指定的檔案,函數原型如下:
  void __fastcall FileClose(int Handle);

  7. FileAge
  返回指定檔案的時間標籤,如果操作失敗,則返回-1,函數原型如下:
  int __fastcall FileAge(const System::AnsiString FileName);

  8. FileExists
  用於測試指定的檔案是否存在,如果存在返回真,否則返回假,函數原型如下:
  bool __fastcall FileExists(const System::AnsiString FileName);

  9. FileGetDate
  返回指定檔案的DOS時間標籤,如果操作失敗,則近回-1,函數原型如下:
  int __fastcall FileGetDate(int Handle);

  10.FileSetDate
  更改指定檔案的DOS時間標籤,如果操作成功,返回0,否則返回錯誤碼,函數原型如下:
  int __fastcall FileSetDate(int Handle,int Age);

  11.FileGetAttr
  返回指定檔案的屬性,如果操作失敗,則函數返回-1,函數原型如下;
  int __fastcall FileGetAttr(const System::AnsiString FileName);

  12.FileSetAttr
  更改指定檔案的屬性參數,如果操作成功,則返回0,函數原型如下;
  int __fastcall FileSetAttr(const System::AnsiString FileName,int Attr);

  13.FindFirst
  在指定的檔案目錄內,搜尋符合特定屬性參數的檔案,如果成功地尋找到合格檔案,
  則函數返回0,否則函數返回一個錯誤碼,函數原型如下:
  int __fastcall FindFirst(const System::AnsiString Path,int Attr,TSearchRec &;F);

  14.FindNext
  繼續搜尋FindFirst所指定屬性參數的檔案,如果成功地尋找到合格檔案,則函數返回0,否則函數返回一個錯誤碼,函數原型如下:
  int __fastcall FindNext(TSearchRec &;F);

  15.FindClose
  釋放FindFirst操作所申請的記憶體資源,函數原型如下:
  void __fastcall FindClose(TSearchRec &;F);

  16.DeleteFile
  在電腦磁碟中刪除指定的檔案,如果操作成功,則函數返回真,函數原型如下:
  bool __fastcall DeleteFile(const AnsiString FileName);

  17.RenameFile
  更改指定檔案的名稱,如果操作成功,則函數返回真,函數原型如下:
  bool __fastcall RenameFile(const AnsiString OldName, const AnsiString NewName);

  18.ChangeFileExt
  更改指定檔案的副檔名,函數原型如下:
  AnsiString __fastcall ChangeFileExt(const AnsiString FileName,const AnsiString Extension);

  19.ExtractFilePath
  返回指定檔案的工作路徑,函數原型如下:
  AnsiString __fastcall ExtractFilePath(const AnsiString FileName);

  20.ExtractFileDir
  返回指定檔案的工作目錄,函數原型如下:
  AnsiString __fastcall ExtractFileDir(const AnsiString FileName);

  21.ExtractFileDrive
  返回指定檔案的磁碟機,函數原型如下:
  AnsiString __fastcall ExtractFileDrive(const AnsiString FileName);

  22.ExtractFileName
  返回指定檔案的檔案名稱及副檔名,函數原型如下:
  AnsiString __fastcall ExtractFileName(const AnsiString FileName);

  23.ExtractFileExt
  返回指定檔案的副檔名,函數原型如下:
  AnsiString __fastcall ExtractFileExt(const AnsiString FileName);

三,Borland C++ Builder VCL的磁碟管理函數

  1. DiskFree
  返回指定磁碟的剩餘空間,如果操作成功,返回剩餘磁碟空間,如果操作失敗,則返回-1,函數原型如下:
  int __fastcall DiskFree(Byte Drive);

  2. DiskSize
  返回指定磁碟的空間,如果操作成功,返回磁碟空間,如果操作失敗,則返回-1,函數原型如下:
  int __fastcall DiskSize(Byte Drive);

  3. GetCurrentDir
  返回當前工作目錄,函數原型如下:
  AnsiString __fastcall GetCurrentDir();

  4. SetCurrentDir
  設定當前工作目錄,如果操作成功,則返回真,函數原型如下:
  bool __fastcall SetCurrentDir(const AnsiString Dir);

  5. CreateDir
  建立新的目錄,如果操作成功,返回真,否則返回假,函數原型如下:
  bool __fastcall CreateDir(const AnsiString Dir);

  6. RemoveDir
  刪除指定的目錄,如果操作成功,返回真,否則返回假,函數原型如下:
  bool __fastcall RemoveDir(const AnsiString Dir);

  四.Borland C++ Builder VCL的字串函數

  1. UpperCase
  將指定的AnsiString字串轉換為大寫形式,函數原型如下:
  AnsiString __fastcall UpperCase(const AnsiString S);

  2. LowerCase
  將指定的AnsiString字串轉換為小寫形式,函數原型如下:
  AnsiString __fastcall LowerCase(const AnsiString S);

  3. CompareStr
  比較兩個AnsiString字串,函數原型如下:
  int __fastcall CompareStr(const AnsiString S1, const AnsiString S2);

  4. CompareText
  比較兩個AnsiString字串,函數原型如下:
  int __fastcall CompareText(const AnsiString S1, const AnsiString S2);

  5. StrLen
  返回字串的長度,函數原型如下:
  Cardinal __fastcall StrLen(const char * Str);

  6. StrEnd
  返回字串結尾指標,函數原型如下:
  char * __fastcall StrEnd(const char * Str);

  7. StrMove
  從源字串向目的字串拷貝指定數目的字元,函數原型如下:
  char * __fastcall StrMove(char * Dest, const char * Source, Cardinal Count);

  8. StrCopy
  將源字串拷貝到目的字串中,函數原型如下:
  char * __fastcall StrCopy(char * Dest, const char * Source);

  9. StrECopy
  將源字串拷貝到目的字串中,並返回目的字串結尾指標,函數原型如下:
  char * __fastcall StrECopy(char * Dest, const char * Source);

  10.StrLCopy
  將源字串指定數目的字元拷貝到目的字串中,並返回目的字串指標,函數原型如下:
  char * __fastcall StrLCopy(char * Dest, const char * Source, Cardinal MaxLen);

  11.StrPCopy
  將AnsiString類型的源字串拷貝到目的字串中,並返回目的字串指標,函數原型如下:
  char * __fastcall StrPCopy(char * Dest, const AnsiString Source);

  12.StrPLCopy
  將源字串(AnsiString類型)指定數目的字元拷貝到目的字串中,並返回目的字串
指標,函數原型如下:
  char * __fastcall StrPLCopy(char * Dest, const AnsiString Source, Cardinal MaxLen);

  13.StrCat
  串連兩個字串,並返回目的字串指標,函數原型如下:
  char * __fastcall StrCat(char * Dest, const char * Source);

  14.StrLCat
  將指定數目的源字串串連到目的字串,並返回目的字串指標,函數原型如下:
  char * __fastcall StrLCat(char * Dest, const char * Source, Cardinal MaxLen);

  15.StrComp
  兩個字串相到比較,返回比較的結果,函數原型如下:
  int __fastcall StrComp(const char * Str1, const char * Str2);

  16.StrIComp
  兩個字串相互比較(不論大小寫),返回比較的結果,函數原型如下:
  int __fastcall StrIComp(const char * Str1, const char * Str2);

  17.StrLComp
  對兩個字串指定數目的字元進行比較操作,函數原型如下:
  int __fastcall StrLComp(const char * Str1, const char * Str2, Cardinal MaxLen);

  18.StrScan
  在指定的字串中尋找特定的字元,並返回字串中第一個特定字元的指標,函數原型如下:
  char * __fastcall StrScan(const char * Str, char Chr);

  19.StrRScan
  在指定的字串中尋找特定的字元,並返回字串中最後一個特定字元的指標,函數原型如下:
  char * __fastcall StrRScan(const char * Str, char Chr);

  20.StrPos
  在Strl所指定的字串中尋找Str2所指定的子字串,並返回Str2在Str2中第一個子字元的指標,函數原型如下:
  char * __fastcall StrPos(const char * Str1, const char * Str2);

  21.StrUpper
  將字串轉換為大寫形式,函數原型如下:
  char * __fastcall StrUpper(char * Str);

  22.StrLower
  將字串轉換為小寫形式,函數原型如下:
  char * __fastcall StrLower(char * Str);

  23.StrPas
  將指定的字串轉換為AnsiString類型字串對象,函數原型如下:
  AnsiString __fastcall StrPas(const char * Str);

  24.StrAlloc
  為字串分配指定位元組的記憶體,並返回記憶體指標,函數原型如下:
  char * __fastcall StrAlloc(Cardinal Size);

  25.StrBufSize
  返回*Str所指向記憶體的大小,函數原型如下:
  Cardinal __fastcall StrBufSize(const char * Str);

  26.StrNew
  在堆中為指定字串分配空間,並將字串拷貝到此空間中,函數原型如下:
  char * __fastcall StrNew(const char * Str);

五.Borland C++ Builder VCL的數值轉換函式

  1. IntToStr
  將整數轉換為AnsiString字串,函數原型如下:
  AnsiString __fastcall IntToStr(int Value);

  2. IntToHex
  將整數轉換為十六進位字串,函數原型如下:
  AnsiString __fastcall IntToHex(int Value, int Digits);

  3. StrToInt
  將AnsiString字串轉換為整數值,如果不能進行轉換,則產生EConvertError異常,
  函數原型如下:
  int __fastcall StrToInt(const AnsiString S);

  4. StrToIntDef
  將AnsiString字串轉換為一個數值,函數原型如下:
  int __fastcall StrToIntDef(const System::AnsiString S,int Default);

  5. FloatToStr
  將浮點數轉換為AnsiString字串,函數原型如下:
  AnsiString __fastcall FloatToStr(Extended Value);

  6. StrToFloat
  將AnsiString字串轉換為一個浮點數值,函數原型如下:
  Extended __fastcall StrToFloat(const AnsiString S);

  7. FloatToStrF
  將浮點數轉換為指定格式的AnsiString字串,函數原型如下:
  AnsiString __fastcall FloatToStrF(Extended Value, TFloatFormat Format,int Precision, int Digits);

  六.Borland C++ Builder VCL的時間函數

  1. Date
  返回TDateTime對象,包含當前的年月日資訊,函數原型如下:
  System::TDateTime __fastcall Date(void);

  2. Time
  返回TDateTime對象,包含當前的時間資訊,函數原型如下:
  System::TDateTime __fastcall Time(void);

  3. Now
  返回TDateTime對象,擷取當前的日期和時間資訊,函數原型如下:
  System::TDateTime __fastcall Now(void);

  4. DatetimeToString
  將TDateTime對象轉換為指定格式的字串對象,函數原型如下:
  void __fastcall DateTimeToString(AnsiString &;Result, const AnsiString Format,System::TDateTime DateTime);

  5. DateToStr
  將TDateTime對象(包含當前年月日資訊)轉換為字串對象,函數原型如下:
  AnsiString __fastcall DateToStr(System::TDateTime Date);

  6. TimeToStr
  將當前日期轉換為字串對象,函數原型如下:
  AnsiString __fastcall TimeToStr(System::TDateTime Time);

  7. DateTimetoStr
  將TDateTime對象轉換為字串對象,函數原型如下:
  AnsiString __fastcall DateTimeToStr(System::TDateTime DateTime);

  8. StrToDate
  將字串對象轉換為年月日對象,函數原型如下:
  System::TDateTime __fastcall StrToDate(const AnsiString S);

  9. StrToTime
  將字串對象轉換時間對象,函數原型如下:
  System::TDateTime __fastcall StrToTime(const AnsiString S);

  10.StrToDateTime
  將字串對象轉換為年月日時間對象,函數原型如下:
  System::TDateTime __fastcall StrToDateTime(const AnsiString S);

  11.DateTimeToSystemTime
  將TDateTime對象轉換為作業系統時間,函數原型如下:
  void __fastcall DateTimeToSystemTime(System::TDateTime DateTime, _SYSTEMTIME &;SystemTime);

  12.SystemTimeToDateTime
  將作業系統時間轉換為TDateTime對象,函數原型如下:
  System::TDateTime __fastcall SystemTimeToDateTime(const _SYSTEMTIME &;SystemTime);

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.