gpt4 book ai didi

arrays - Free Pascal 中文字数组的语法是什么?

转载 作者:行者123 更新时间:2023-12-04 18:49:51 28 4
gpt4 key购买 nike

我想将 50 多个硬编码字节列表存储在字节数组中,但我找不到 Free Pascal 的硬编码数组语法。

套用[elem, elem, elem] ,那么数组有什么用呢?

最佳答案

尝试这个

Const
MyArray : Array[0..3] of byte= (0,1,2,3);

更新

你必须翻译这个
static int xlat[] = {
0x64, 0x73, 0x66, 0x64, 0x3b, 0x6b, 0x66, 0x6f,
0x41, 0x2c, 0x2e, 0x69, 0x79, 0x65, 0x77, 0x72,
0x6b, 0x6c, 0x64, 0x4a, 0x4b, 0x44, 0x48, 0x53,
0x55, 0x42, 0x73, 0x67, 0x76, 0x63, 0x61, 0x36,
0x39, 0x38, 0x33, 0x34, 0x6e, 0x63, 0x78, 0x76,
0x39, 0x38, 0x37, 0x33, 0x32, 0x35, 0x34, 0x6b,
0x3b, 0x66, 0x67, 0x38, 0x37
};

static int XLAT_SIZE = 53;

对此
const
XLAT_SIZE = 53;
xlat : Array[0..XLAT_SIZE-1] of Integer = (
$64, $73, $66, $64, $3b, $6b, $66, $6f,
$41, $2c, $2e, $69, $79, $65, $77, $72,
$6b, $6c, $64, $4a, $4b, $44, $48, $53,
$55, $42, $73, $67, $76, $63, $61, $36,
$39, $38, $33, $34, $6e, $63, $78, $76,
$39, $38, $37, $33, $32, $35, $34, $6b,
$3b, $66, $67, $38, $37
);

关于arrays - Free Pascal 中文字数组的语法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7802319/

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