- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
观看 CppCons 后 Will Your Code Survive the Attack of the Zombie Pointers?我对指针的生命周期有点困惑,需要一些澄清。
首先一些基本的了解。评论如有错误,请指正:
int* p = new int(1);
int* q = p;
// 1) p and q are valid and one can do *p, *q
delete q;
// 2) both are invalid and cannot be dereferenced. Also the value of both is unspecified
q = new int(42); // assume it returns the same memory
// 3) Both pointers are valid again and can be dereferenced
我对 2) 感到困惑。显然它们不能被取消引用,但为什么不能使用它们的值(例如,将一个值与另一个值进行比较,甚至是不相关且有效的指针?)这在 25:38 中进行了说明。 。我在cppreference上找不到任何关于此的信息。 ,这就是我得到 3) 的地方。
注意:返回相同内存的假设不能一概而论,因为它可能会发生也可能不会发生。对于此示例,应该理所当然地认为它“随机”返回了与视频示例中的情况相同的内存,并且(也许?)下面的代码需要中断。
后进先出列表中的多线程示例代码可以在单个线程中模拟:
Node* top = ... //NodeA allocated before;
Node* newnodeC = new Node(v);
newnodeC->next = top;
delete top; top = nullptr;
// newnodeC->next is a zombie pointer
Node* newnodeD = new Node(u); // assume same memory as NodeA is returned
top = newnodeD;
if(top == newnodeC->next) // true
top = newnodeC;
// Now top->next is (still) a zombie pointer
这应该是有效的,除非 Node
根据
If a new object is created at the address that was occupied by another object, then all pointers, references, and the name of the original object will automatically refer to the new object and, once the lifetime of the new object begins, can be used to manipulate the new object, but only if the following conditions are satisfied [which they are]
那么为什么这是一个僵尸指针并且被认为是 UB?
上面的(单线程)压缩代码是否可以通过 newnodeC->next = std::launder(newnodeC->next)
来修复(如果有 const 成员)截至
If the conditions listed above are not met, a valid pointer to the new object may still be obtained by applying the pointer optimization barrier std::launder
我希望这能够修复“僵尸指针”,并且编译器不会发出赋值指令,而只是将其视为优化障碍(例如,当函数内联并且再次访问 const 成员时)
总而言之:我以前没有听说过“僵尸指针”。我是否正确,不能使用任何指向已销毁/已删除对象的指针(用于读取[指针值]和取消引用[读取受指点]),除非重新分配指针或使用在那里重新创建的相同对象类型重新分配内存(并且没有 const/reference 成员)?这不能通过 C++17 修复吗 std::launder
已经? (裸露多线程问题)
另外:在3)
在第一个代码中将 if(p==q)
甚至普遍有效?因为根据我对视频(第二部分)的理解,阅读 p
是无效的。 .
编辑:作为我很确定 UB 发生的解释:再次假设纯粹偶然,相同的内存随 new
返回。 :
// Global
struct Node{
const int value;
};
Node* globalPtr = nullptr;
// In some func
Node* ptr = new Node{42};
globalPtr = ptr;
const int value = ptr->value;
foo(value);
// Possibly on another thread (if multi-threaded assume proper synchronisation so that this scenario happens)
delete globalPtr;
globalPtr = new Node{1337}; // Assume same memory returned
// First thread again (and maybe on serial code too)
if(ptr == globalPtr)
foo(ptr->value);
else
foo(globalPtr->value);
根据视频,delete globalPtr
之后还有ptr
是一个“僵尸指针”并且不能被使用(又名“将是UB”)。充分优化的编译器可以利用这一点并假设指针对象从未被释放(特别是当删除/新建发生在另一个函数/线程/...上时)并优化 foo(ptr->value)
至foo(42)
另请注意提到的 Defect Report 260 :
Where a pointer value becomes indeterminate because the object pointed to has reached the end of its lifetime, all objects whose effective type is a pointer and that point to the same object acquire an indeterminate value. Thus p at point X, and p, q, and r at point Z, can all change their value.
我认为这是明确的解释:delete globalPtr
之后ptr
的值也是不确定的。但这如何与
If a new object is created at the address that was occupied by another object, then all pointers [...] of the original object will automatically refer to the new object and[...] can be used to manipulate the new object
最佳答案
已删除的指针值具有无效的指针值,而不是未指定的值。
从 C++17 开始,无效指针值的行为在 [basic.stc]/4 中定义:
Indirection through an invalid pointer value and passing an invalid pointer value to a deallocation function have undefined behavior. Any other use of an invalid pointer value has implementation-defined behavior.
因此,尝试比较两个无效指针具有实现定义的行为。有一个脚注澄清此行为可能包括运行时错误。
在您的第一个代码段中,p
在删除后有一个无效的指针值;您对 q
所做的任何操作都与此无关。无效的指针值无法神奇地再次变得有效。无法(在标准 C++ 的范围内)确定新的分配是否与先前的分配位于“同一位置”。
std::launder
没有帮助;您再次使用了无效的指针值,因此触发了实现定义的行为。
也许您可以查阅您的实现文档,看看它如何定义此行为。
在您的问题中,您提到了 C DR 260,但这无关紧要。 C 是一种与 C++ 不同的语言。在 C++ 中,已删除的指针具有无效的指针值,而不是不确定的值。
关于c++ - 了解 C++ 指针生命周期/僵尸指针,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58414316/
已关闭。这个问题是 off-topic 。目前不接受答案。 想要改进这个问题吗? Update the question所以它是on-topic用于堆栈溢出。 已关闭10 年前。 Improve th
我正在尝试将 JSON 发送到我的服务器并作为结果检索 JSON。例如发送用户名和密码并取回 token 和其他内容。 这就是我正在为发送的 HTTP 请求所做的。我现在如何检索同一请求中的内容?
我有以下 xts 矩阵: > options(digits.secs = 6) > set.seed(1234) > xts(1:10, as.POSIXlt(1366039619, tz="EST"
我目前正在开发一个应用程序,当用户到达某个位置时,它会提醒用户。我希望这个应用程序也在后台运行并搜索解决方案。 在 AppStore 中,我发现了一款名为“Sleep Cycle”的应用程序,它可
我想创建一个基于 farbtastic color picker 的颜色选择器。我想要实现的是添加我想要链接到色轮的 RGB slider 。这是我到目前为止所拥有的。 app.controller(
RFC 5545 允许 RDATE 属性具有 PERIOD 数据类型。该数据类型的语义是什么?据我所知,这是未指定的。它会改变事件的持续时间吗?如果时区更改且没有持续时间怎么办? 最佳答案 尽管我
在 CodinGame学习平台,C# 教程中用作示例的问题之一是: The aim of this exercise is to check the presence of a number in a
我听说网上有一本英特尔书,它描述了特定汇编指令所需的 CPU 周期,但我找不到(经过努力)。谁能告诉我如何找到CPU周期? 这是一个例子,在下面的代码中,mov/lock 是 1 个 CPU 周期,x
据我所知,Java GC有次要GC(低成本)和主要GC周期(高成本)。如果对象在本地范围内,则会在 Minor GC 中清理它。如果对象的引用存储在代码中的其他位置,则它会在主 GC 中被清除。 例如
到目前为止,我有一个很好的自旋锁,可以用作 intendend: std::atomic_flag barrier = ATOMIC_FLAG_INIT; inline void lo
晚上好,我将 cycle2 与 prev 和 next 函数一起使用,但我无法将 prev 和 next 函数置于图像下方的中心。我环顾四周,我知道这会很愚蠢,但我就是看不到它。非常令人沮丧。谢谢加里
出于教育目的,我想知道在优化(在不同级别)和编译之后执行函数需要多少 CPU 周期。有没有办法分析代码或可执行文件以获得可重现的答案?我在 64 位 Windows 7 Pro 上使用 Eclipse
我想彻底测量和调整我的 C/C++ 代码,以便在 x86_64 系统上更好地使用缓存。我知道如何使用计数器(我的 Windows 机器上的 QueryPerformanceCounter)来测量时间,
我尝试将一些数据分组到每四周一次的存储桶中,并使用 pd.Grouper(key='created_at', freq='4W')。我希望这些组是这样的,如果我有从 2019-08-26 到 2019
我正在做一个关于随机数的大型学校项目,但我找不到 Math.random() 的句点。我安装了 7.0.800.15 版本,并且正在使用 Windows 10 计算机。我试过用一个简单的程序来确定周期
我正在努力解决我们生产环境中垃圾收集利用率高的问题,我想知道设置一个大的堆大小来保证老年代永远不会被填满是否会阻止触发主要的 GC 周期。 为了实现这一点,我想有一个特定的阈值标记会触发主要的 GC
我想测量在 Python 3 中执行加法运算所需的时钟周期数。 我写了一个程序来计算加法运算的平均值: from timeit import timeit def test(n): for i
我正在寻找一种方法来测量线程上的函数调用所花费的 cpu 周期。 示例伪代码: void HostFunction() { var startTick = CurrentThread.Cur
就 CPU 周期而言,malloc() 的成本是多少?(Vista/OS,最新版本的 gcc,最高优化级别,...) 基本上,我正在实现一个复杂的 DAG 结构(类似于链表)由一些 16B(不太常见)
C/C++ 中的类型转换会导致额外的 CPU 周期吗? 我的理解是,至少在某些情况下应该消耗额外的 CPU 周期。就像从浮点类型转换为整数一样,CPU 需要将浮点结构转换为整数。 float a=2.
我是一名优秀的程序员,十分优秀!