请教 C++Builder的语法在DELPHI中怎样使用?在线等待(100分)

不爽

Unregistered / Unconfirmed
GUEST, unregistred user!
OutTmpFiles = new AnsiString[FHttpThreadCount];
FSuccesss=new bool[FHttpThreadCount];
HttpThreads = new THttpGetThread *[FHttpThreadCount];
HttpThreads:=HttpGetThread.Create(^FHttpThreadCount);
CopyFile(OutTmpFiles[0].c_str(),FOutFileName.c_str(),false);
Reads:=FileRead(hS,(void *)Buf,BufSize);
FileWrite(hD,(void *)Buf,Reads);
Reads:=FileRead(hS,(void *)Buf,BufSize);
 
var
OutTmpFiles :array[0..FHttpThreadCount-1] of AnsiString;
FSuccesss:array[0..FHttpThreadCount-1] of Boolean;
HttpThreads :array[0..FHttpThreadCount-1] of THttpGetThread;
begin
抱歉我写不下去了,你好多变量没有定义,而且我还忘了“ ^ ”在C++里的意义了。
 
接受答案了.
 
顶部