- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
根据文档,Ptr{T}
是
A memory address referring to data of type T. However, there is no guarantee that the memory is actually valid, or
that it actually represents data of the specified type.
另一方面:
Ref{T}
An object that safely references data of type T. This type is guaranteed to point to valid, Julia-allocated memory
of the correct type. The underlying data is protected from freeing by the garbage collector as long as the Ref
itself is referenced.
所以我的问题是:Ref
似乎与 Ptr
具有相同的用例,并且在任何情况下似乎都比 Ptr
更好。关于我们什么时候应该使用 Ptr{T}
而不是 Ref{T}
是否有一些规则?
最佳答案
当您将 C 混合到 Julia 中时它很有用(这并不奇怪,因为您引用的文档页面被命名为“C 接口(interface)”)。就像你说的,Ref
看起来像一个增强的 Ptr
保证有有效的 Julia 分配的内存由 Julia 的垃圾收集器处理。 Ptr
更适合包装在 C 端创建和处理的指针。准则写在一小节中 "When to use T, Ptr{T} and Ref{T}"在“调用 C 和 Fortran 代码”页面中:
In Julia code wrapping calls to external C routines, ordinary (non-pointer) data should be declared to be of type T inside the ccall, as they are passed by value. For C code accepting pointers, Ref{T} should generally be used for the types of input arguments, allowing the use of pointers to memory managed by either Julia or C through the implicit call to Base.cconvert. In contrast, pointers returned by the C function called should be declared to be of output type Ptr{T}, reflecting that the memory pointed to is managed by C only. Pointers contained in C structs should be represented as fields of type Ptr{T} within the corresponding Julia struct types designed to mimic the internal structure of corresponding C structs.
如果你正在做纯 Julia,你会想要坚持使用 Ref
,尽管你不会经常需要它,因为引用通常出现在具有抽象类型的可变对象或结构字段中. Ref
在广播中使可迭代成为标量并将不可变对象(immutable对象)包装在可变引用中非常有用。
关于julia - 我什么时候应该使用 Ptr 而不是 Ref,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69373435/
这可能是个愚蠢的问题,但我对 C 指针的理解有点问题。当涉及到数组时更是如此。例如: char ptr[100]; ptr[0]=10; fprintf(stderr, "&ptr: %p \n pt
当我尝试 printf("%p","%d","%u",ptr,ptr,ptr) 时,我得到 00405067 但是当我尝试执行 printf("%p %d %u",ptr, ptr,ptr) 我分别得
ffunction glMultiDrawElements 需要一个指向指针的指针作为其参数之一。如何从 StorableArray Int a 获取 Ptr(Ptr a) ? 最佳答案 您需要先将索
最近我遇到了这个我自己无法理解的问题。 这三个表达式有什么用真是什么意思? *ptr++ *++ptr ++*ptr 我试过里奇。但不幸的是,他无法理解他讲述的这 3 次手术。 我知道它们都是为了增加
这个问题已经有答案了: C pointer syntax (4 个回答) 已关闭 7 年前。 我最近在研究C语言中的指针,我似乎无法完全理解这段代码: int *ptr= (*int) 99999;
假设*ptr指向一个变量。 *ptr、&ptr 和 ptr 各自的含义是什么? 很多时候,我对它们感到困惑。有人介意澄清这些陈述并举一些具体的例子吗? 最佳答案 在函数中采用以下变量。 int i =
这个问题在这里已经有了答案: Why in a 2D array a and *a point to same address? [duplicate] (4 个答案) 关闭 3 年前。 我正在测试
我在一次采访中看到了这段代码。 int main() { int **p; p = (int **) new int(7); cout<<*p; return 0; }
这个问题在这里已经有了答案: 关闭 11 年前。 Possible Duplicate: ++ on a dereferenced pointer in C? 同样,什么会*指针+= 1*ptr %
++*ptr++ 中的求值顺序是什么?当操作涉及指针和左值时它会改变吗? 如果a++的优先级高于*a或++a,那么为什么是++*a++ 评估为首先返回递增的值然后更改指针,而不是更改指针,然后递增该位
假设*ptr 指向一个变量。 *ptr、&ptr 和 ptr 分别是什么意思? 很多时候,我对它们感到困惑。有人介意澄清这些陈述并举一些具体的例子吗? 最佳答案 在函数中获取以下变量。 int i =
我是 C++ 的新手,最近我花了几天时间阅读有关指针的内容。我意识到下面的 2 段代码给我不同的结果,尽管它们看起来相同。 第一段代码: int a = 5; int* ptr = &a; cout
我有以下代码,完全可以 100% 正常运行,没有错误、编译或运行时。但这太难看了,因为当我确定有办法不需要其中任何一个时,我必须强制转换并使用一个无关的变量。 structMSGB ***init_b
我不太确定 ptr&&(*ptr) 的使用 起初,我不确定这是为了检查 NULL ptr 还是赋值是否存在。 但是现在运行下面的代码后我发现这两种方式都不起作用:发生运行时错误! 有人能解释一下里面发
示例#1 #include struct node{ struct node *next; char *data; }; struct node *reverse_list(stru
我正在尝试使用两种方法删除示例二叉搜索树的左子节点 (10): 方法 1:通过将指针传递给指向当前节点的指针。 方法2:通过将指针的地址传递给当前节点。这不会删除节点,但调用 delete 会破坏指针
我一直在研究 C 中的字符串,并且在以下代码中遇到了以下问题: #include int main() { char *p = "foo"; printf("%p\t%p\t%p",&p
如果我这样做: int x = 10; void *ptr = &x; ptr++; “ptr++”行给出错误。 但是,如果我这样做而不是“ptr++”: ptr = ptr + 1; 它工作得很好。
我正在学习C语言,并且很困惑++*ptr和*ptr++之间的区别。 例如: int x = 19; int *ptr = &x; 我知道 ++*ptr 和 *ptr++ 会产生不同的结果,但我不确定为
我正在学习C语言,并且很困惑++*ptr和*ptr++之间的区别。 例如: int x = 19; int *ptr = &x; 我知道 ++*ptr 和 *ptr++ 会产生不同的结果,但我不确定为
我是一名优秀的程序员,十分优秀!