CopyMemory Move 사용 노트
901 단어 memory
uses math;
procedure TForm2.Button1Click(Sender: TObject);
type
TTArrayByte= array of Byte;
var
FSource: PAnsiChar;
FArrayByte:TTArrayByte;
FSourceLenth: Integer;
HexStr: string;
begin
FSource := '123';
FSourceLenth := Length(FSource);////string=PChar=PWideChar 1
SetLength(FArrayByte, FSourceLenth);
//CopyMemory(@FArrayByte[0], FSource, FSourceLenth);
//Move(FSource,FArrayByte[0],Min(FSourceLenth,8));
FArrayByte[0]:=99;
Move(FSource[1],FArrayByte[1],Min(FSourceLenth,2));
HexStr := '';
for FSourceLenth := 0 to FSourceLenth do
begin
HexStr := HexStr + inttoHex(FArrayByte[FSourceLenth], 2);
end;
ShowMessage(HexStr);
ShowMessage(PAnsiChar(FArrayByte));
end;
CopyMemory (배열 값 주소, 배열 값 주소, 길이)
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
C++ Builder XE4, 10.2 Tokyo > 에러 메세지 윈도우 > 에러 메세지를 다른 소프트로부터 취득한다운영 환경 관련 처리 에러 메시지가 표시된 상태에서, 에러 메시지를 다른 소프트웨어로부터 취득한다. 참고 : answered Dec 2 '14 at 23:52 FelipeDurar 해당 HWND 값을 어떻게 얻는가?...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.