perl6 – 在Perl 6中,如何使用NativeCall接口将原始字节转换为浮点数?

前端之家收集整理的这篇文章主要介绍了perl6 – 在Perl 6中,如何使用NativeCall接口将原始字节转换为浮点数?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
this conversation in the Perl 6 IRC channel和Martin Barth发布的问题开始,我正在尝试使用Perl6 NativeCall接口来实现 reproduce this C code,该接口用于此目的.这是我尝试过的:
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.

解决方法

使用union(所有字段共享相同的内存空间)可能是最自然的方式.声明这样的联合:
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

另一个与问题的内容无关的问题,但是在发布的代码中出现:本机整数和数字时间从不需要对它们执行.new,因为它们不是对象类型.这个:

my uint32 $num = .new;

应该只是:

my uint32 $num;

和:

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

应该只是:

my num32 $float = 1e0;

使用e指数是文字在Perl 6中浮动的原因.

原文链接:https://www.f2er.com/Perl/172230.html

猜你在找的Perl相关文章