gpt4 book ai didi

raku - 在 Perl 6 中,如何使用 NativeCall 接口(interface)将原始字节转换为浮点?

转载 作者:行者123 更新时间:2023-12-04 03:56:13 25 4
gpt4 key购买 nike

来自 this conversation in the Perl 6 IRC channel和 Martin Barth 发布的一个问题,我正在尝试 reproduce this C code使用用于该目的的 Perl6 NativeCall 接口(interface)。这是我尝试过的:

use NativeCall;

my uint32 $num = .new;
my num32 $float = .new: Num(1.0);

sub memcpy(num32 $float, uint32 $num, int32 $size) is native('Str') { * };

memcpy($float,$num,4);
say $num;

这会产生一个错误:
This type cannot unbox to a native integer: P6opaque, Any

我将其解释为,您已将其声明为整数,我无法将其转换为原始内存,以便可以将其从这里复制到那里。

这只是回答 Martin Barth 提出的更一般性问题的一种可能方式:如何将原始字节转换为浮点数。也许还有其他方法可以做到这一点,但无论如何我都很想知道如何将 C 程序转换为 NativeCall 等价物。

更新:与此同时, here's the original question this other post tries to be a solution for .

最佳答案

使用联合(所有字段共享相同的内存空间)可能是最自然的方式。像这样声明一个联合:

my class Convertor is repr<CUnion> {
has uint32 $.i is rw;
has num32 $.n is rw;
}

然后用它来做转换:
my $c = Convertor.new;
$c.i = 0b1000010111101101100110011001101;
say $c.n # 123.4000015258789

另一个与问题的实质无关的问题,但出现在发布的代码中: native 整数和数字时间永远不需要 .new对它们完成,因为它们不是对象类型。这:
my uint32 $num = .new;

应该只是:
my uint32 $num;

和:
my num32 $float = .new: Num(1.0);

应该只是:
my num32 $float = 1e0;
e的使用指数是在 Perl 6 中使文字成为浮点数的原因。

关于raku - 在 Perl 6 中,如何使用 NativeCall 接口(interface)将原始字节转换为浮点?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50085953/

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