vcl库函数
当前位置:以往代写 > C/C++ 教程 >vcl库函数
2019-06-13

vcl库函数

vcl库函数

副标题#e#

1.内存分派

2.文件操纵

3.磁盘目次打点

4.字符串操纵

5.范例转换

6.时间和日期打点

一.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);


#p#副标题#e#

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);

#p#副标题#e#

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);

#p#副标题#e#

三,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);

#p#副标题#e#

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);

#p#副标题#e#

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);

#p#副标题#e#

五.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);

#p#副标题#e#

六.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);

    关键字:

在线提交作业