- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我有一个在 Ubuntu x86 上用 gcc 编译的 C 程序。这是我从 main
void addme()
{
long a = 5;
char c = '3';
long array[3];
array[0] = 2;
array[1] = 4;
array[2] = 8;
}
如果我在最后一行中断,然后调试/检查这就是我得到的
(gdb) print &a
$5 = (long *) 0xbffff04c
(gdb) print &c
$6 = 0xbffff04b "3\005"
(gdb) print &array
$7 = (long (*)[3]) 0xbffff03c
(gdb) x 0xbffff03c
0xbffff03c: 0x00000002
(gdb) x 0xbffff040
0xbffff040: 0x00000004
(gdb) x 0xbffff044
0xbffff044: 0x00000008
(gdb) x 0xbffff04c
0xbffff04c: 0x00000005
为什么 0xbffff048、0xbffff049、0xbffff04a 和 0xbffff04b 保留给 char c
而只需要 0xbffff04b 来存储一个 char?
还有这个符号 "3\005"
是什么意思?
另一方面,如果我的方法如下,则没有填充额外三个字节的存储空间
void addme()
{
long a = 5;
char c = '3';
char line[9];
char d = '4';
}
这就是这些变量的内存分配方式(跳过地址的前导部分)
a - f04c
c - f04b
d - f04a
line - f041, f042, f043, f044, f045, f046, f047, f048, f049
也不确定为什么 d
在内存预留中被提升到 line
之上。我假设因为它没有被初始化,所以它进入了堆栈中与初始化变量不同的区域?
最佳答案
这叫做 alignment .对象与特定整数的倍数对齐(在 long
的情况下通常为 4 或 8)以便快速访问。通常,您不必太担心 C++ 中的位置,因为语言规范通常使编译器能够选择最有效(根据您的优化方向)的方式来存储对象,通常情况就是这样.
Every object type has the property called alignment requirement, which is an integer value (of type
std::size_t
, always a power of2
) representing the number of bytes between successive addresses at which objects of this type can be allocated. The alignment requirement of a type can be queried withalignof
orstd::alignment_of
. The pointer alignment functionstd::align
can be used to obtain a suitably-aligned pointer within some buffer, andstd::aligned_storage
can be used to obtain suitably-aligned storage.Each object type imposes its alignment requirement on every object of that type; stricter alignment (with larger alignment requirement) can be requested using
alignas
.In order to satisfy alignment requirements of all non-static members of a class, padding may be inserted after some of its members.
关于你的第二个问题,@prl给出答案:
Because
c
is achar
,&c
is achar *
, so gdb prints it as a string. The first character of the string is '3', the value ofc
. The next character is 5, the low byte ofa
, which gdb prints in octal escape notation. Escape sequences in C on Wikipedia – prl 1024 min ago
为什么在 char
之后声明 char
时 pad 消失了?因为在这种情况下,char
的对齐方式显示为 1,这意味着不需要填充。另一方面,long
似乎是 4,因此必须有一个 4 字节的空间,其中放置 char
。
I assume because it wasn't initialized, it goes to a different region in stack than initialized variables?
不是真的。一个变量是否被初始化(通常)并不影响它的位置,只是它有一个不确定的值。另一方面,编译器可以自由地将对象按照自己喜欢的方式放置在内存中。在实践中,编译器“喜欢”在内存和时间上带来效率的实现。
关于c++ - 为什么在堆栈中我的函数局部变量之间有内存空间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54453306/
有人可以解释一下为什么我得到: "use of unassigned local variable number_of_column" for: if (i f.LastWriteTime).Fir
我正在尝试为查询定义和初始化 MySQL 变量。 我有以下几点: declare @countTotal int; SET @countTotal = select COUNT(*) from nG
局部变量由小写字母或下划线(_)开头.局部变量不像全局和实变量一样在初始化前含nil值. ruby>$foo nil ruby>@foo nil ruby>foo ER
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 1
当我单击 Login 类上的注册按钮时,出现 nullpointerException,它给出了该错误。我尝试修改本地和全局变量,但似乎没有任何方法可以修复该错误,我可能在 onClickListen
我之前看过一些关于此的帖子,但我一直无法找到有关 actionListeners 的帖子。我正在尝试使用 JButton 数组创建井字棋。如果可能的话,如何在使用 for 循环临时变量的同时向它们添加
我试图找出一种将 getView() 方法中的位置变量传递给内部类的方法。但是,这不能是最终变量,因为 ListView 中的每个项目都会调用 getView() ,因此它会发生变化。有没有办法访问该
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 9 年前。 Improve th
这对你们中的某些人来说似乎微不足道,但我对下面的这两个示例感到困惑。 int[] numbers = new int[] { 5, 4, 1, 3, 9, 8, 6, 7, 2, 0 }; int i
这个问题在这里已经有了答案: How do JavaScript closures work? (86 个答案) 关闭 7 年前。 所以我正在复习我的 vanilla Javascript,专门用于
我正在将mockito与spring(java 1.8)一起使用,并且我尝试在我的Answer对象中使用局部变量: public IProductDTO productForMock = null;
是否可以在java中为静态方法注入(inject)局部变量,比如 @Inject public void someMethod() { @MyInjectQualifier MyObjectC
我有一个函数,每 2 秒被重复调用一次,每次从屏幕顶部带来一个具有随机纹理的球。我希望能够在 touchesBegan 中使用这个球,但我不能,因为它是一个局部变量。我试过将它设为全局变量,但这给了我
这是(我假设)一个基本问题,但我似乎无法弄清楚。 给定以下代码: from src.Globals import * import pygame # Used to manage how fast t
这就是我在循环中引用全局变量的方法。 _.forEach(myTableName.detailsObjects, function (o, key) { if
我已经创建了一些代码: import numpy as np Length=(2.7)*10**-3 Nx=4 x = np.linspace(0, Length, Nx+1) # mes
如何获取局部变量? 我有这个代码 if (ctrl is Control) { Control c = (Control)ctrl; foreach (object innerCtrl
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: Difference between class variables and class instance
我正在学习 Python 3,我有一个关于 Python 中面向对象编程的非常基本的问题。这是我的代码。 class pet: number_of_legs = 0 def count
我有以下代码块: class Student{ int age; //instance variable String name; //instance varia
我是一名优秀的程序员,十分优秀!