- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我提出这个问题的场景:
static ProfileUnit* g_units_header;
static ProfileUnit* g_units_tail;
static int g_units_count;
void Destroy() {
if (!g_units_header) {
return;
}
typedef std::vector<ProfileUnit*> PUVect;
PUVect stack(g_units_count);
ProfileUnit* p = g_units_header;
while (p) {
stack.push_back(p);
p = p->next;
}
for (PUVect::const_iterator it = stack.begin(); it != stack.end(); ++it) {
free(*it);
}
g_units_header = g_units_tail = nullptr;
g_units_count = 0;
}
如果“g_units_header”为 nullptr,“stack”和“p”是否会在调用堆栈上?这不是一个很好的例子,我只是想解释一下这个场景。只关注问题。
最佳答案
(为了便于说明,我将在问题的原始版本中使用代码的轻微变化。此后您编辑了问题以更改代码,但这不会改变答案。)
实际上,答案取决于所使用的编译器和优化选项。一些可能的结果:
val
完全优化掉,无论 p
的值如何.val
被放置在寄存器中(这算作“内存”吗?)val
无论 p
的值如何,都会被放入堆栈中.val
仅当 p
时才放入堆栈不是NULL
.在我的机器上,gcc -O3
#4:
$ cat test.c
#include <stdio.h>
void foo(int* p) {
if (!p) return;
int val = 0xdeadbeef;
scanf("%d", &val);
}
编译:
$ gcc -S -O3 test.c
输出(为简洁而编辑):
$ cat test.s
_foo: ## @foo
testq %rdi, %rdi ## <<< p == NULL?
je LBB0_2 ## <<< Will jump over the stack allocation below
pushq %rbp
movq %rsp, %rbp
subq $16, %rsp ## <<< Allocate stack for val
movl $-559038737, -4(%rbp) ## 0xdeadbeef
leaq L_.str(%rip), %rdi
leaq -4(%rbp), %rsi
xorl %eax, %eax
callq _scanf
addq $16, %rsp ## <<< Deallocate val
popq %rbp
LBB0_2:
retq
关于c - C 是否为函数开始时 undefined variable 分配内存?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52658019/
我只是有一个更琐碎的问题。 为什么undefined == undefined 返回true,而undefined >= undefined 为false? undefined 等于 undefine
用PHP 7.2编写套接字服务器。根据Firefox 60中的“网络”选项卡,服务器的一些HTTP响应的第一行随机变为undefined undefined undefined。因此,我尝试记录套接字
在 JavaScript 中这是真的: undefined == undefined 但这是错误的: undefined <= undefined 起初我以为<=运算符包含第一个,但我猜它试图将其转换
在回答这个问题 (Difference between [Object, Object] and Array(2)) 时,我在 JavaScript 数组中遇到了一些我以前不知道的东西(具有讽刺意味的
来自https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Array/of , Note: thi
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
当我添加 到我的 PrimeFaces Mobile 页面,然后我在服务器日志中收到以下警告 WARNING: JSF1064: Unable to find or serve resource, u
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我是一名优秀的程序员,十分优秀!