- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在指针算术标准规范中( [expr.add]/4.2
,我们有:
Otherwise, if
P
points to an array element i of an array objectx
with n elements ([dcl.array]), the expressionsP + J
andJ + P
(whereJ
has the value j) point to the (possibly-hypothetical) array element i + j ofx
if 0 ≤ i + j ≤ n and the expressionP - J
points to the (possibly-hypothetical) array element i − j ofx
if 0 ≤ i − j ≤ n.
这里的“可能假设”是什么意思?该段落已经将结果指针限制在数组的范围内。好吧,包括一过到底的插槽。是这个意思吗?
最佳答案
是的,这是最后一个“元素”。
[basic.compound]/3:
[..] For purposes of pointer arithmetic ([expr.add]) and comparison ([expr.rel], [expr.eq]), a pointer past the end of the last element of an arrayx
of n elements is considered to be equivalent to a pointer to a hypothetical array element n ofx
and an object of typeT
that is not an array element is considered to belong to an array with one element of typeT
. [..]
关于c++ - "possibly-hypothetical"在指针算术规则中意味着什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59592182/
在指针算术标准规范中( [expr.add]/4.2 ,我们有: Otherwise, if P points to an array element i of an array object x w
我想编写如下 jQuery 语句: $(".someparentcontainer input[type=checkbox]:is(.foo, .bar, .xyz)") 作为以下内容的简写: $("
这是一个非常幼稚的问题(我知道),但我认为这将是一个很好的起点,可以考虑如何实际执行 CPU 的基本指令集: 在二进制补码系统中,您不能反转您的实现可以表示的最大负数的符号。理论上的原因很明显,最大负
我是一名优秀的程序员,十分优秀!