gpt4 book ai didi

c - 在 Delphi 中加入 16 位整数以生成 32 位整数?

转载 作者:太空宇宙 更新时间:2023-11-04 05:04:13 24 4
gpt4 key购买 nike

我想知道 Delphi 中 Make32 函数的等价物是什么?

见附图...


enter image description here

最佳答案

我知道三种常用的方法。

位运算

u32 := (u16hi shl 16) or u16lo;

马可龙

u32 := MAKELONG(u16lo, u16hi);

LongRec 转换

LongRec(u32).Hi := u16Hi;
LongRec(u32).Lo := u16Lo;

关于c - 在 Delphi 中加入 16 位整数以生成 32 位整数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27975840/

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