gpt4 book ai didi

delphi - 字节绝对字符串数组:为64位Windows编译时内容不正确

转载 作者:行者123 更新时间:2023-12-03 18:53:54 26 4
gpt4 key购买 nike

如果我为64位Windows编译,则我的字节数组没有正确的输入值。
如果我为x32-Windows编译此过程,则值是正确的。

谁能帮我?

procedure doAnything(AText: String); //for example "<xml><s name="hello"/></xml>"
var
myArray:array of Byte absolute AText;
begin
... (* myArray for x32: correct Length and Values (60, 0, 120, 0, 109, 0, ...) *)
... (* myArray for x64: Length: 2 (60, 0) *)
end

最佳答案

如果要以原始字节的形式访问String的字符数据,则必须使用类型转换,请勿使用absolute,因为String的内存布局与动态数组不兼容,正如其他人向您指出的那样:

procedure doAnything(AText: String);
var
myBytes: PByte;
myBytesLen: Integer;
begin
myBytes := PByte(PChar(AText));

myBytesLen := ByteLength(AText);
// or: myBytesLen := Length(AText) * SizeOf(Char);

// use myBytes up to myBytesLen as needed...
end;


如果您真的想使用 absolute,则必须像这样使用它:

procedure doAnything(AText: String);
var
myChars: PChar;
myBytes: PByte absolute myChars;
myBytesLen: Integer;
begin
myChars := PChar(AText);

myBytesLen := ByteLength(AText);
// or: myBytesLen := Length(AText) * SizeOf(Char);

// use myBytes up to myBytesLen as needed...
end;

关于delphi - 字节绝对字符串数组:为64位Windows编译时内容不正确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23743769/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com