- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我得到了结构:
typedef struct
{
int a;
int b;
int c;
}Z;
代码:
int main()
{
Z *a = (Z*)malloc(sizeof(Z)*8);
Z *b = (Z*)malloc(sizeof(Z)*8);
printf("%lu\n", sizeof(Z));
printf("%p %p\n", b, a);
printf("%lu\n", b - a);
}
输出:
12
0x89a080 0x89a010
12297829382473034420
为什么最后一行的值这么大?实际地址差异是 0x70(16 个字节的堆分配 header 加上 12*8 个字节的数组 a 元素),因此根据指针的算术,我期望值 0x70/12=9.(3) 或 9 转换为整数。我知道减去的指针不指向相同的数组,但我希望得到更合理的结果,这会让我知道内存映射的样子。它是在 64b Ubuntu 和 gcc 4.8.2 上编译的。
组装:
.file "aa.c"
.section .rodata
.LC0:
.string "%lu\n"
.LC1:
.string "%p %p\n"
.text
.globl main
.type main, @function
main:
.LFB2:
.cfi_startproc
pushq %rbp
.cfi_def_cfa_offset 16
.cfi_offset 6, -16
movq %rsp, %rbp
.cfi_def_cfa_register 6
subq $16, %rsp
movl $96, %edi
call malloc
movq %rax, -16(%rbp)
movl $96, %edi
call malloc
movq %rax, -8(%rbp)
movl $12, %esi
movl $.LC0, %edi
movl $0, %eax
call printf
movq -16(%rbp), %rdx
movq -8(%rbp), %rax
movq %rax, %rsi
movl $.LC1, %edi
movl $0, %eax
call printf
movq -8(%rbp), %rdx
movq -16(%rbp), %rax
subq %rax, %rdx
movq %rdx, %rax
sarq $2, %rax
movq %rax, %rdx
movabsq $-6148914691236517205, %rax
imulq %rdx, %rax
movq %rax, %rsi
movl $.LC0, %edi
movl $0, %eax
call printf
leave
.cfi_def_cfa 7, 8
ret
.cfi_endproc
.LFE2:
.size main, .-main
.ident "GCC: (Ubuntu 4.8.2-19ubuntu1) 4.8.2"
.section .note.GNU-stack,"",@progbits
最佳答案
从1570草案来看,这是
§6.5.6 Additive operators
- When two pointers are subtracted, both shall point to elements of the same array object, or one past the last element of the array object; the result is the difference of the subscripts of the two array elements. The size of the result is implementation-defined, and its type (a signed integer type) is
ptrdiff_t
defined in the<stddef.h>
header. If the result is not representable in an object of that type, the behavior is undefined. In other words, if the expressionsP
andQ
point to, espectively, the i-th and j-th elements of an array object, the expression(P)-(Q)
has the valuei−j
provided the value fits in an object of typeptrdiff_t
. Moreover, if the expression P points either to an element of an array object or one past the last element of an array object, and the expressionQ
points to the last element of the same array object, the expression((Q)+1)-(P)
has the same value as((Q)-(P))+1
and as-((P)-((Q)+1))
, and has the value zero if the expressionP
points one past the last element of the array object, even though the expression(Q)+1
does not point to an element of the array object.
您不能假设指针是连续的,但如果它们是连续的,那么实际问题是对指针执行算术的方式,因为指针的类型为 Z
, 和 (void *)b - (void *a) != b - a
.
所以检查这个例子来说明我的意思
Z *a;
Z *b;
Z *a = malloc(sizeof(Z) * 16);
if (a == NULL)
return -1;
b = a + 8;
printf("%lu\n", sizeof(Z));
printf("%p, %p\n", b, a);
printf("%lu\n", (ptrdiff_t)(b - a)); /* this will give wrong result */
printf("%lu\n", (ptrdiff_t)((void *)b - (void *)a));
记得包括stddef.h
对于 ptrdiff_t
类型。
关于c - 指针减法给出奇怪的结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28649153/
我有一个用于“从”和“到”字段的日期选择器,我想要减法的结果。例如:toValue-fromValue,结果以小时为单位。如何做到这一点? 最佳答案 可以使用timeIntervalSinceDate
多边形之间可以进行 bool 运算吗? 我想在 OpenGL 中做一个这样的图形,我想用一个球体和四个较小的球体进行四次减法来实现。 最佳答案 不,仅使用 OpenGL 是不可能的。 OpenGL 是
这就是我在 Haskell 中进行矩阵加法的内容 > add :: (Num a) => [[a]] -> [[a]] -> [[a]] > add [] [] = [] >
我有两个约会: def lastRequestDate = "08-09-2019" (MM-dd-yyyy) 和 def Today = new Date().format('MM-dd-yyyy'
我在 Python 中玩弄大数,我计算了 2**(1322134) 而且显然计算了很长时间。然而,当我计算 2**(1322134) - 2**(1322134) 它立即返回 0。 Python 如
我正在尝试解决一个问题: 编写一个程序计算非负整数之间的差值。 输入: 输入的每一行都由一对整数组成。每个整数都在 0 到 10 之间提高到 15(含)。输入在文件末尾终止。 输出: 对于输入中的每一
是否可以有一个文本框,用户将在其中输入一个数字,而在另一个文本框中,它会自动将第一个文本框的值加 5 并从第三个文本框的值中减去 5? 例如: 用户输入:10 第二个文本框:15 第三个文本框:5 请
假设性问题。我的程序中有一个自定义对象,称为 GamePoint。它已正确定义并具有所有必需的成员。我想知道我是否可以实现类似于以下内容的东西: GamePoint p = new GamePoint
编辑 以前版本的问题没有准确反射(reflect)我的问题。我编辑了它。 我想做一系列破坏性的加法/减法(对具有相应方法的可变对象)。 a 被赋值后: a = [:a, :b] 以下所有返回语法错误。
我需要一个函数来计算 unsigned val 的总和和 signed dX并将结果包装在 lower 范围内和 upper 例如: 值为 5 , 变化 -6 , 以及 0 的范围和 10会返回 10
分而治之矩阵乘法是否执行与经典矩阵乘法相同数量的加法/减法? 我知道它们专门用于乘法运算,因为它们具有相同的 O(n^3) 复杂度... 但是当我尝试在我正在制作的程序中对它们进行计数时,加法/减法得
好的,我需要我的代码来检查减号/减号/-是否被按下,如果它被按下我想要弹出一个警告框。我尝试了 109 和 189 键码,但我仍然没有得到想要的结果。虽然我按 "-" 我没有得到那个警告框 最佳答案
如果我们想要映射一个将范围内的每个元素加 1 的函数,我们可以编写 map (\x -> x + 1) [1..5] 但我想大多数人都会选择 map (+1) [1..5] 相反。但这显然不适用于 (
我正在使用 lex 和 bison 进行简单的计算。它应该做的是解析每个提到的减法 - 1 - -1,1- 1,1--1,最多的是什么重要:1-1。前三种情况有效,但在最后一种情况下,它看起来好像将句
我有一个 MySQL 查询: $q = mysql_query("SELECT id FROM table ORDER BY id DESC LIMIT 2"); while($row = mysql
我有两个字符串列表,listA 和 listB。 listA 更长,我想通过向其添加空字符串来使 listB 具有相同的大小。 这个有效: int diff = listA.size() - list
我现在有两个相似的表(一个用于账单,另一个用于支付),我向用户展示了来自两者的联合混合数据.. Table Bills CustomerId
我有 2 个非索引数据框如下:df1 John Mullen 12/08/1993 Lisa Bush 06/12/1990 Maria Murphy 30/03/1989 Set
我有这个功能: (defun test (variable) (cond ((null variable) nil) (( (lisp-implementation-type) "
我有一个数据框 [in] MyDates [out] 2017-04-04 -5.0 2017-04-03 -5.0 2017-03-31 -4.0 201
我是一名优秀的程序员,十分优秀!