gpt4 book ai didi

c - 在 Julia 中声明 C void 指针的正确方法

转载 作者:太空狗 更新时间:2023-10-29 16:53:57 24 4
gpt4 key购买 nike

好吧,我最初严重搞砸了我对这个问题的表述(自从我认真编写 C++ 代码以来已经一年多了,而且我对纯 C 的经验非常有限),所以让我们再试一次。

一些 C 代码被写成期望你做类似下面的事情

void* p;
create_new_thing(&p); //p is now a new thing
do_stuff_to_thing(p); //something happened to p

我的问题是如何在 Julia 中创建对象 p。现在我相信答案是

p = Ref{Ptr{Void}}()
ccall((:create_new_thing, :lib), Void, (Ptr{Ptr{Void}},), p)
ccall((:do_stuff_to_thing, :lib), Void, (Ptr{Void},), p)

此外,我相信相同的代码,但将 p 声明为 p = Array(Ptr{Void}, 1) 也可以。

不过,我确实发现 Julia 中 RefPtr 之间的整个区别非常困惑,主要是因为它们似乎以我无法跟踪的方式相互转换.

最佳答案

您的代码看起来差不多 没问题。不过要小心!任何小错误,例如您在此处遇到的错误,都可能导致段错误:

p = Ref{Ptr{Void}}()
ccall((:create_new_thing, :lib), Void, (Ptr{Ptr{Void}},), p)
ccall((:do_stuff_to_thing, :lib), Void, (Ptr{Void},), p)
# error here ^

正确的做法是

p = Ref{Ptr{Void}}()
ccall((:create_new_thing, :lib), Void, (Ptr{Ptr{Void}},), p)
ccall((:do_stuff_to_thing, :lib), Void, (Ptr{Void},), p[])
# fixed ^

了解在何处使用pp[] 的最简单方法是考虑相应的C 代码。在 C 中,我们写

void *p;
create_new_thing(&p)
do_stuff_to_thing(p)

Julia 对象不像 C 对象那样有一级内存地址,所以我们必须在 Julia 中使用 p = Ref{Ptr{Void}}() 来获取内存地址。这个对象,作为一个引用,在 C 中的行为类似于 &p。这意味着要获取对象本身,在 C 中的 p,我们需要使用 p[] 在 Julia 中。

所以 Julia 中的等价物是

p = Ref{Ptr{Void}}()                 # this p corresponds to &p in C
ccall(:create_new_thing, ..., p) # like &p
ccall(:do_stuff_to_thing, ..., p[]) # like *(&p); that is, like p

关于c - 在 Julia 中声明 C void 指针的正确方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40140699/

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