我有一个数据结构:
data = array of integer;
Run Code Online (Sandbox Code Playgroud)
我已经把它填满了
source = array of byte;
Run Code Online (Sandbox Code Playgroud)
同
data[x] := Source[offset] or (Source[offset + 1] shl 8) or
(Source[offset + 2] shl 16) or (Source[offset + 3] shl 24);
Run Code Online (Sandbox Code Playgroud)
在处理完这些块之后,我必须将它们带回"字节"......
任何的想法?